Haha-Yes/commands/fun/s.js

20 lines
499 B
JavaScript
Raw Normal View History

import { SlashCommandBuilder } from 'discord.js';
2022-08-18 02:09:51 +02:00
export default {
data: new SlashCommandBuilder()
.setName('s')
.setDescription('What could this be 🤫')
.addStringOption(option =>
option.setName('something')
.setDescription('🤫')
.setRequired(true)),
category: 'fun',
async execute(interaction, args) {
const command = args[0];
2022-08-18 02:09:51 +02:00
if (command === 'levertowned') {
interaction.reply('Hello buddy bro <:youngtroll:488559163832795136> <@434762632004894746>');
}
},
};