Skip to content

Instantly share code, notes, and snippets.

View benjaminhaysom-sys's full-sized avatar

benjaminhaysom-sys

  • Joined May 14, 2026
View GitHub Profile
@benjaminhaysom-sys
benjaminhaysom-sys / unlock-all-blooks.js
Created May 14, 2026 01:20 — forked from acquitelol/unlock-all-blooks.js
Unlocks every single possible known blook in Blooket. Either run this through a userscript or simply execute in the console while in a game lobby or in your blook dashboard..
async function lazyDefine(callback, condition, maxAttempts = 100, time = 100) {
let attempt = 0;
while (attempt < maxAttempts) {
const result = callback();
if (condition ? condition(result) : result) return result;
await new Promise(res => setTimeout(res, time));
attempt++;