Facebook
From SeuPai, 3 Years ago, written in JavaScript.
Embed
Download Paste or View Raw
Hits: 104
  1. const Discord = require('discord.js');
  2.  
  3. exports.run = async (bot, message, args) => {
  4.   const sayMessage = args.join(' ');
  5.   if (!message.member.hasPermission("ADMINISTRATOR")) return message.reply(`? | Você não tem permissão para isso.`)
  6.   message.delete().catch(O_o => {});
  7.   message.channel.send(sayMessage);
  8. };