Skip to content

Instantly share code, notes, and snippets.

@XTalandier
Last active December 23, 2015 06:29
Embed
What would you like to do?
Cookie Clicker
setInterval(function(){document.getElementById('bigCookie').click()}, 1);
Game.Earn(99999999999);
var intervals = [];
for(var i = 0 ; i < 1000; i++){
intervals.push(setInterval(function(){document.getElementById('bigCookie').click()}, 1));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment