Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- const Discord = require("discord.js")
- /**
- * @param {Discord.ChatInputCommandInteraction} interaction
- */
- module.exports.run = (interaction) => {
- const Embed = new Discord.EmbedBuilder()
- Embed.setTitle(`Event`)
- Embed.setDescription(
- `This should not be deleted. This message will get edited and this already works.`
- )
- Embed.setColor("#0098af")
- const cancel = new Discord.ButtonBuilder()
- cancel.setLabel("Cancel")
- //prettier-ignore
- cancel.setCustomId("cancelevent")
- cancel.setStyle(Discord.ButtonStyle.Danger)
- const actionRow = new Discord.ActionRowBuilder()
- actionRow.addComponents(cancel)
- interaction.reply({
- embeds: [Embed],
- components: [actionRow],
- })
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement