client.commands = new Collection(); const commandFiles = fs.readdirSync('./commands').filter(file => file.endsWith('.js')); for (const file of commandFiles) { const command = require(`./commands/${file}`); // Set a new item in the Collection // With the key as the command name and the value as the exported module client.commands.set(command.data.name, command); } client.on('interactionCreate', async interaction => { if(interaction.isCommand()) { const command = client.commands.get(interaction.commandName); if (!command) { return; }; try { await command.execute(interaction); } catch (error) { console.error(error); await interaction.reply({ content: 'There was an error while executing this command!', ephemeral: true }); } } else if(interaction.isButton()) { const button = client.buttons.get(interaction.customId); if(!button) return interaction.reply("Button failed!"); try { await button.execute(interaction); } catch (error) { console.error(error); await interaction.reply({ content: 'There was an error while executing this button!', ephemeral: true }); } } });