Advertisement
TheDuliX_

Untitled

Aug 1st, 2021
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. const Discord = require('discord.js');
  2. const client = new Discord.Client();
  3.  
  4. client.on('ready', () => {
  5. console.log(`Logged in as ${client.user.tag}!`);
  6. });
  7.  
  8. client.on('message', msg => {
  9. if (msg.react('πŸ€”'))
  10. {
  11. msg.channel.sendPrivateMessage("Your message here.");
  12. msg.channel.sendMessage("Your message here.");
  13. }
  14. });
  15.  
  16. client.login('ODcxNDE4NDc2NzUxOTA4ODk0.YQbBsw.9QMX8dWT3YQ3e0uRUjsNJhTXOgY');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement