Advertisement
TheDuliX_

Untitled

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