How To Use
1. Open Cookie Clicker in your browser
2. Press F12 to open DevTools, then click the Console tab
3. Click a code block below to copy it
4. Paste it into the console and press Enter
5. A 🔥 GUI will appear on your screen — drag it, use it, enjoy it
Bookmarklets
🔥
Full Cheat GUI

The complete Fire Clicker cheat panel. Cookies, autoclicker, max buildings, unlock upgrades, achievements, golden cookies, and CpS hacks — all in one draggable GUI.

Loading...
🍪
Add 1 Trillion Cookies

Instantly add 1,000,000,000,000 cookies to your total. Quick and simple, no GUI needed.

Game.cookies+=1e12;Game.cookiesEarned+=1e12;
Quick Autoclicker

Starts a rapid autoclicker on the big cookie at 10ms intervals. Stop it by running the stop code.

window._fc=setInterval(()=>document.getElementById('bigCookie').click(),10);
🛑
Stop Autoclicker

Stops the quick autoclicker started above.

clearInterval(window._fc);console.log('Autoclicker stopped.');
🏪
Max All Buildings

Sets every building to 500 and recalculates your CpS immediately.

Object.values(Game.Objects).forEach(o=>{o.amount=500;o.bought=500;o.refresh()});Game.recalculateGains=1;
🔓
Unlock All Upgrades

Instantly buys and unlocks every upgrade in the game.

Object.values(Game.Upgrades).forEach(u=>{u.bought=1;u.unlocked=1});Game.recalculateGains=1;
🏆
Unlock All Achievements

Awards every achievement badge instantly.

Object.values(Game.Achievements).forEach(a=>a.won=1);Game.recalculateGains=1;
Max Milk

Sets milk to max (900) for maximum kitten upgrade bonuses.

Game.milkProgress=900;Game.recalculateGains=1;