Command Information

Lowercase letters, numbers, hyphens, and underscores only

Command Options

No options yet. Click "Add Option" to get started.

Command Preview

/example

An example slash command

Generated Code

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
    });
  },
};
Powered by Mamba Host