Guest User

Untitled

a guest
Oct 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. const Discord = require('discord.js');
  2. const client = new Discord.Client();
  3.  
  4.  
  5.  
  6.  
  7. client.on('message', message => {
  8. if (message.content === 'COMMAND') {
  9. message.channel.send({embed: {
  10. color: 3447003, //You can choose another color, this color is blue
  11. description: `THE DESCRIPTION OF THE EMBED`
  12. }});
  13. message.channel.sendMessage(`TEXT`)
  14. }
  15. })
  16.  
  17.  
  18. client.login('YOUR_TOKEN');
Add Comment
Please, Sign In to add comment