Advertisement
Guest User

[EASY] COOKIE CLICKER CHEAT SCRIPT

a guest
Oct 10th, 2018
3,440
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /**
  2. HOW TO USE:
  3. Paste this file into the developer console (press F12 then click console inside the shit that appears)
  4. now either type autoClick(interval); - Interval being the amount of milliseconds between each click
  5. or
  6. type setCookies(amount); - Amount being the amount of cookies you want
  7. */
  8.  
  9. /********* CHEAT FOR COOKIE CLICKER ***********/
  10. /** COOKIE CLICKER: http://orteil.dashnet.org/cookieclicker/ **/
  11.  
  12. /**
  13.  *   Automatically clicks the cookie in cookie clicker every millisecond (100 times a second)
  14.  *
  15.  *   Cookie Clicker auto click
  16.  *   Paste into console and watch the cookie crumble
  17.  */
  18. function autoClick(interval) {
  19.     window.setInterval(function() {
  20.             var button = document.getElementById("bigCookie");
  21.             button.click();
  22.     }, interval);
  23. }
  24.  
  25. /**
  26.  *   Sets your cookie count to count provided
  27.  */
  28. function setCookies(amount) {
  29.     Game.cookies = amount;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement