Skip to content

Instantly share code, notes, and snippets.

View Neelix9336's full-sized avatar

Neelix Neelix9336

View GitHub Profile
@Neelix9336
Neelix9336 / autoClicker.js
Last active October 30, 2025 09:44
This is a cookie clicker auto clicker for anyone who doesn't like clicking the cookie but still wants it to be clicked, to use add this to your bookmark bar! (To stop: "javascript:clearInterval(autoClicker)")
javascript:
var autoClicker = setInterval(function() {
Game.lastClick -= 1000;
document.getElementById("bigCookie").click()
}, 1)