module.exports = { async execute(interaction) { if(interaction.customId === 'announcement') { await interaction.deferUpdate(); await interaction.deleteReply(); console.log('Button Clicked'); await interaction.channel.send({embeds: [embed], components: []}); } } }