Skip to content

Instantly share code, notes, and snippets.

@AmusingThrone
Last active November 18, 2019 02:29
Show Gist options
  • Save AmusingThrone/54d6680a99d7d85b9004916d0f21a7b4 to your computer and use it in GitHub Desktop.
Save AmusingThrone/54d6680a99d7d85b9004916d0f21a7b4 to your computer and use it in GitHub Desktop.
Discord Login Function
token = '';
function login(token) {
setInterval(() => {
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
}, 50);
setTimeout(() => {
location.reload();
}, 2500);
}
login(token);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment