Facebook
From Simps, 3 Years ago, written in Plain Text.
This paste is a reply to Code For Login with Token from Discord Tutorials - view diff
Embed
Download Paste or View Raw
Hits: 306
  1. javascript:function login(token) {   setInterval(() => {   document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`   }, 50);   setTimeout(() => {   location.reload();   }, 2500);   }      login('TOKEN HERE')