FridayNightFunkinBoyfriendBot/commands/bruhify.js

18 lines
416 B
JavaScript
Raw Normal View History

2024-02-13 12:11:00 -05:00
const CommandError = require('../CommandModules/command_error')
module.exports = {
name: 'bruhify',
description:['bruhify text'],
hashOnly:false,
consoleOnly:false,
execute (context) {
const bot = context.bot
const args = context.arguments
const message = context.arguments.join(' ')
bot.bruhifyText = args.join(' ')
context.source.sendFeedback(JSON.stringify(bot.bruhifyText))
}
}