ALERT!
Click here to register with a few steps and explore all our cool stuff we have to offer!
Home
Upgrade
Credits
Help
Search
Awards
Achievements
 5121

[Release] [Simple] JavaScript Auto-Clicker(s)

by IcyJake - 03-30-2020 - 02:57 PM
#1
There's 2 different scripts I have, you may choose whichever one you would like to use. Both scripts achieve the same goal. :P



Code:
id = "clicker"
var button = document.getElementById("clicker");

setInterval(function()
{
    button.click() 
}, 0)

Code:
var button = document.getElementsByClassName("btn btn-default")[0];

setInterval(function()
{
    button.click() 
}, 0)
Reply

Users browsing: 2 Guest(s)