Code:
javascript:var bm=1;var atc=false;var s=prompt('Clicks per second:');alert('Press the up arrow key to toggle the autoclicker and the down arrow to change the click step and the left arrow to change the CPS. Autoclicker is off.');document.onkeydown=function(e){if (e.code=='ArrowUp'){if (atc==true){atc=false;} else if (atc==false){atc=true}} else if (e.code=='ArrowDown') {var n=prompt('New click step:', bm);bm=parseInt(n);} else if (e.code=='ArrowLeft') {var n=prompt('New clicks per second:', s);s=parseInt(n);}};var gx=0;var gy=0;document.addEventListener('mousemove',function(e){gx=e.clientX;gy=e.clientY;});setInterval(function(){for (var i=0;i
Copy
Tutorial (Recorded at six in the morning so I sound horrible)
There's something wrong here.