Skip to content

Instantly share code, notes, and snippets.

View NullClock's full-sized avatar

NullClock NullClock

  • XAPK Enterprises
View GitHub Profile
@NullClock
NullClock / main.md
Last active December 13, 2023 04:07
AutoclickJS

AutoclickJS


The JS autoclicker.

alert("Hold CTRL while pressing the spot to autoclick.");
document.body.addEventListener("click", (e) => {
   if (e.ctrlKey) {
       alert("Autoclicking! Press ALT + C to stop.");
const tx = e.clientX;