Skip to content

Instantly share code, notes, and snippets.

@qerdcv
Created February 7, 2022 14:44
Show Gist options
  • Save qerdcv/d4a65fb226209067c6a9d2992e26180b to your computer and use it in GitHub Desktop.
Save qerdcv/d4a65fb226209067c6a9d2992e26180b to your computer and use it in GitHub Desktop.

AUTOLOOT OF TWITCH CHANNEL CURRENCY

HOW OT USE

  • Open browser dev-tools
  • Open Console
  • Insert next script
let interval = setInterval(() => {
  let button = document.querySelector('.ScCoreButtonSuccess-sc-1qn4ixc-5');
  if (button) {
    button.click()
  }
}, 1000);
  • Press enter

And then script every second will check if there is a button to claim revard, and press it

To stop autoloot

  • Open browser dev-tools
  • Open Console
  • Insert next script
clearInterval(interval)

!!SUCCESS!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment