Lowercase letters, numbers, hyphens, and underscores only
No options yet. Click "Add Option" to get started.
An example slash command
const { SlashCommandBuilder } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('example')
.setDescription('An example slash command'),
async execute(interaction) {
// Get option values
// Your command logic here
await interaction.reply({
content: 'Command executed successfully!',
ephemeral: true
});
},
};