module.exports = { data: new SlashCommandBuilder() .setName('event-host') .setDescription('Hosts/Creates a new Event.'), async execute(interaction) { if (interaction.member.permissions.has(Permissions.FLAGS.ADMINISTRATOR)) { return interaction.reply('```Enter the Name of your Event:```') .then(() => { const filter = m => m.content.startsWith('t'); const collector = interaction.channel.createMessageCollector({ filter , time: 5000, max: 3 }); collector.on('collect', m => interaction.channel.send(`Collected ${m.content}`)); collector.on('end', collected => interaction.channel.send(`Collected ${collected.size} items`)); }); } else { return interaction.reply({ content: '```You must have Administrator permissions to be able to use this command!```', ephemeral: true}); } }, }; El cobrador termina pero no cobra. Lo probé con awaitMessages también y eso también terminó con 'catch' pero tampoco se recopiló. Tal vez tenga algo que ver con async pero no estoy seguro. Intenté filtrar para configurar m.author.id == interaction.user.id pero eso ni siquiera hace que el colector funcione.