How To Login To Discord Token

Very simple, you need the token you want to login to. Then use this script:

let token = "HERE_YOUR_TOKEN";

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

login(token);

In

"HERE_YOUR_TOKEN" 

Paste the token

Open the developer window → Console → Paste the script and hit enter

That’s it now you should logged into the account

Enjoy!

2 Likes