Let’s be honest Blooket’s fun, but you’re here to break it.
2024 brought new patches, but the exploit community moved faster. If you’re still Googling for outdated scripts or GitHub dumps that don’t even load anymore, stop wasting your time. I broke it down below tested, working, and actually useful for students, devs, and tinkerers.
🔓 Method 1: GitHub Exploit by glixzzy (Updated Forks Only)
Forget the old ones. Most are dead. Working forks:
https://github.com/Blooket-Cheats/Blooket-Hacks-2024
How to Use:
-
Open Blooket in Chrome.
-
Go to the game mode (e.g., Tower Defense, Gold Quest).
-
Open DevTools (F12) → Console.
-
Paste the script from the repo matching the game.
-
Press Enter. UI will pop up with toggles like:
-
Infinite Coins
-
Auto Answer
-
Spam Boxes
-
Sell Duplicates
-
💣 Method 2: Bookmarklets (For Fast Injection Without Console)
javascript:(function() {
var script = document.createElement('script');
script.src = 'https://raw.githubusercontent.com/blookethackcommunity/scripts/main/autofarm.js';
document.body.appendChild(script);
})();
-
Drag this to your bookmarks bar.
-
Open Blooket game, click bookmarklet.
-
Instant inject, works on most game types.
⚙️ Method 3: Local Tampermonkey Scripts (Advanced)
Use this if you want auto-inject without copying every time.
Steps:
-
Install Tampermonkey in Chrome.
-
Add a new script.
-
Paste this (example for auto-answer):
// ==UserScript==
// @name Blooket Auto Answer 2024
// @match *://*.blooket.com/*
// @grant none
// ==/UserScript==
(function() {
setInterval(() => {
let correct = Object.values(document.querySelectorAll('.answerContainer')).find(el => el.innerText.includes('✓'));
if (correct) correct.click();
}, 500);
})();
-
Save. Open a quiz and watch it do its thing.
🔥 Hidden Extras:
-
Game Token Flooder (Spam public lobbies with fake joins):
https://github.com/z1g-projects/blooket-token-flooder
-
Blooket UI Unlocker shows hidden blooks in shop without needing tokens.
🧠 Why It Still Works in 2024:
Blooket relies on client-side validation for many game events. While they patch the front-end, most devs aren’t obfuscating their scripts deeply enough. Tools like DevTools and XHR interceptors still allow you to:
-
Hook correct answer API
-
Forge coin gain payloads
-
Spam “open box” functions
These hacks survive because Blooket’s architecture is still heavily client-driven.