#Don`t working slash command

1 messages · Page 1 of 1 (latest)

atomic arch
const { SlashCommandBuilder} = require('discord.js');


module.exports = {
    data: new SlashCommandBuilder()
        .setName('ping')
        .setDescription('Replies with Pong!'),
    async execute(interaction) {
        await interaction.reply('Pong!');
    },
};

This code don`t working. WHY???