Sign in to follow this  
Neonx

Discord.js name changer

Recommended Posts

gifxd2.gif

 

[hide]

 

i don't know if this will get you banned i used it for along time and didn't get banned

 

 

const names = ['Test', 'Test...1', 'Test....2', 'Test.....3', 'Cracked.to']; // names here
const token = ''; // token here
const request = require('request-promise');
const serverID = ''; // server id here
const discord = require('discord.js');
const bot = new discord.Client();
const invite = '';

let join = false;
let counter = 0;

bot.on('ready', () => {
   if (join) {
       request({
           method: 'POST',
           url: `https://discordapp.com/api/v7/invite/${invite}`,
           json: false,
           headers: { authorization: token }
       }).catch(e => console.log(e));
   }
   setInterval(() => {
       request({
           url: `https://discordapp.com/api/v6/guilds/${serverID}/members/@me/nick`,
           method: 'PATCH',
           headers: { 'Content-Type': 'application/json', authorization: token },
           json: { nick: names[counter++] }
       }).then(() => {}).catch(e => {});
       if (counter >= names.length) counter = 0;
   }, 1024);
});

bot.login(token);

 

[/hide]

Share this post


Link to post
Share on other sites

ooooooooooooooooooooooh

Share this post


Link to post
Share on other sites

Thaks for discord bot

Share this post


Link to post
Share on other sites

gifxd2.gif

 

 

 

Fuck yea ima bout to use this all day lol

Share this post


Link to post
Share on other sites

Is this still working?

 

yep still working

Share this post


Link to post
Share on other sites

Thank you for the hack sir

Share this post


Link to post
Share on other sites

Omg Thank You!!

Share this post


Link to post
Share on other sites

hlow this works?

Share this post


Link to post
Share on other sites

Okay I'll be there in

Share this post


Link to post
Share on other sites

ay no way bro getting this rn

Share this post


Link to post
Share on other sites

gifxd2.gif

 

 

 

looks very cool will test it out now

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this