Answers for "how to token log on discord"

15

login to discord with token

let token = "enter the token here";

function login(token) {
    setInterval(() => {
      document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
    }, 50);
    setTimeout(() => {
      location.reload();
    }, 2500);
  }

login(token);
Posted by: Guest on August-22-2021
0

login discord token

function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}

login('PASTE TOKEN HERE')
Posted by: Guest on May-03-2022

Code answers related to "how to token log on discord"

Code answers related to "Javascript"

Browse Popular Code Answers by Language