├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── skid_report.yml │ └── suggestion.yml └── pull_request_template.md ├── .gitignore ├── LICENSE ├── README.md ├── autoupdate ├── KGui.png ├── brawl │ ├── doubleEnemyXp.png │ ├── halfEnemySpeed.png │ ├── instantKill.png │ ├── invincibility.png │ ├── killEnemies.png │ ├── magnet.png │ ├── maxCurrentAbilities.png │ ├── nextLevel.png │ ├── removeObstacles.png │ └── resetHealth.png ├── cafe │ ├── maxItems.png │ ├── removeCustomers.png │ ├── resetAbilities.png │ ├── setCash.png │ └── stockFood.png ├── crypto │ ├── alwaysTriple.png │ ├── autoGuess.png │ ├── choiceESP.png │ ├── passwordESP.png │ ├── removeHack.png │ ├── setCrypto.png │ ├── setPassword.png │ └── stealPlayersCrypto.png ├── dinos │ ├── autoChoose.png │ ├── rockESP.png │ ├── setFossils.png │ ├── setMultiplier.png │ └── stopCheating.png ├── doom │ ├── fillDeck.png │ ├── maxCards.png │ ├── maxHealth.png │ ├── maxStats.png │ ├── minEnemy.png │ └── setCoins.png ├── factory │ ├── chooseBlook.png │ ├── freeUpgrades.png │ ├── maxBlooks.png │ ├── removeGlitches.png │ ├── sendGlitch.png │ ├── setAllMegaBot.png │ └── setCash.png ├── fishing │ ├── frenzy.png │ ├── removeDistraction.png │ ├── sendDistraction.png │ ├── setLure.png │ └── setWeight.png ├── flappy │ ├── setScore.png │ └── toggleGhost.png ├── global │ ├── autoAnswer.png │ ├── changeBlookIngame.png │ ├── everyAnswerCorrect.png │ ├── getDailyRewards.png │ ├── highlightAnswers.png │ ├── hostAnyGamemode.png │ ├── intervals │ │ ├── autoAnswer.png │ │ ├── highlightAnswers.png │ │ ├── percentAutoAnswer.png │ │ └── subtleHighlightAnswers.png │ ├── preventSuspension.png │ ├── removeNameLimit.png │ ├── removeRandomName.png │ ├── sellDuplicateBlooks.png │ ├── spamBuyBlooks.png │ ├── subtleHighlightAnswers.png │ └── useAnyBlook.png ├── gold │ ├── alwaysTriple.png │ ├── autoChoose.png │ ├── autoChooseOnce.png │ ├── chestESP.png │ ├── removeBadChoices.png │ ├── resetPlayersGold.png │ ├── setGold.png │ ├── setPlayersGold.png │ └── swapGold.png ├── gui.png ├── kingdom │ ├── choiceESP.png │ ├── choiceESPLoop.png │ ├── disableToucan.png │ ├── maxStats.png │ ├── setGuests.png │ └── skipGuest.png ├── mobileGui.png ├── racing │ ├── instantWin.png │ └── setQuestions.png ├── reactGui.png ├── royale │ ├── autoAnswer.png │ └── intervals │ │ └── autoAnswer.png ├── rush │ ├── setBlooks.png │ └── setDefense.png ├── timestamps │ ├── KGui.png │ ├── brawl │ │ ├── doubleEnemyXp.png │ │ ├── halfEnemySpeed.png │ │ ├── instantKill.png │ │ ├── invincibility.png │ │ ├── killEnemies.png │ │ ├── magnet.png │ │ ├── maxCurrentAbilities.png │ │ ├── nextLevel.png │ │ ├── removeObstacles.png │ │ └── resetHealth.png │ ├── cafe │ │ ├── maxItems.png │ │ ├── removeCustomers.png │ │ ├── resetAbilities.png │ │ ├── setCash.png │ │ └── stockFood.png │ ├── crypto │ │ ├── alwaysTriple.png │ │ ├── autoGuess.png │ │ ├── choiceESP.png │ │ ├── passwordESP.png │ │ ├── removeHack.png │ │ ├── setCrypto.png │ │ ├── setPassword.png │ │ └── stealPlayersCrypto.png │ ├── dinos │ │ ├── autoChoose.png │ │ ├── rockESP.png │ │ ├── setFossils.png │ │ ├── setMultiplier.png │ │ └── stopCheating.png │ ├── doom │ │ ├── fillDeck.png │ │ ├── maxCards.png │ │ ├── maxHealth.png │ │ ├── maxStats.png │ │ ├── minEnemy.png │ │ └── setCoins.png │ ├── factory │ │ ├── chooseBlook.png │ │ ├── freeUpgrades.png │ │ ├── maxBlooks.png │ │ ├── removeGlitches.png │ │ ├── sendGlitch.png │ │ ├── setAllMegaBot.png │ │ └── setCash.png │ ├── fishing │ │ ├── frenzy.png │ │ ├── removeDistraction.png │ │ ├── sendDistraction.png │ │ ├── setLure.png │ │ └── setWeight.png │ ├── flappy │ │ ├── setScore.png │ │ └── toggleGhost.png │ ├── global │ │ ├── autoAnswer.png │ │ ├── changeBlookIngame.png │ │ ├── everyAnswerCorrect.png │ │ ├── getDailyRewards.png │ │ ├── highlightAnswers.png │ │ ├── hostAnyGamemode.png │ │ ├── intervals │ │ │ ├── autoAnswer.png │ │ │ ├── highlightAnswers.png │ │ │ ├── percentAutoAnswer.png │ │ │ └── subtleHighlightAnswers.png │ │ ├── preventSuspension.png │ │ ├── removeNameLimit.png │ │ ├── removeRandomName.png │ │ ├── sellDuplicateBlooks.png │ │ ├── spamBuyBlooks.png │ │ ├── subtleHighlightAnswers.png │ │ └── useAnyBlook.png │ ├── gold │ │ ├── alwaysTriple.png │ │ ├── autoChoose.png │ │ ├── autoChooseOnce.png │ │ ├── chestESP.png │ │ ├── removeBadChoices.png │ │ ├── resetPlayersGold.png │ │ ├── setGold.png │ │ ├── setPlayersGold.png │ │ └── swapGold.png │ ├── gui.png │ ├── kingdom │ │ ├── choiceESP.png │ │ ├── choiceESPLoop.png │ │ ├── disableToucan.png │ │ ├── maxStats.png │ │ ├── setGuests.png │ │ └── skipGuest.png │ ├── mobileGui.png │ ├── racing │ │ ├── instantWin.png │ │ └── setQuestions.png │ ├── reactGui.png │ ├── royale │ │ ├── autoAnswer.png │ │ └── intervals │ │ │ └── autoAnswer.png │ ├── rush │ │ ├── setBlooks.png │ │ └── setDefense.png │ ├── tower-defense-2 │ │ ├── maxTowers.png │ │ ├── removeEnemies.png │ │ ├── setCoins.png │ │ ├── setHealth.png │ │ └── setRound.png │ ├── tower-defense │ │ ├── earthquake.png │ │ ├── maxTowers.png │ │ ├── removeDucks.png │ │ ├── removeEnemies.png │ │ ├── removeObsticles.png │ │ ├── setDmg.png │ │ ├── setRound.png │ │ └── setTokens.png │ ├── voyage │ │ ├── heistESP.png │ │ ├── maxLevels.png │ │ ├── setDoubloons.png │ │ ├── startHeist.png │ │ ├── swapDoubloons.png │ │ └── takeDoubloons.png │ └── workshop │ │ ├── removeDistractions.png │ │ ├── sendDistraction.png │ │ ├── setToys.png │ │ ├── setToysPerQ.png │ │ └── swapToys.png ├── tower-defense-2 │ ├── maxTowers.png │ ├── removeEnemies.png │ ├── setCoins.png │ ├── setHealth.png │ └── setRound.png ├── tower-defense │ ├── earthquake.png │ ├── maxTowers.png │ ├── removeDucks.png │ ├── removeEnemies.png │ ├── removeObsticles.png │ ├── setDmg.png │ ├── setRound.png │ └── setTokens.png ├── voyage │ ├── heistESP.png │ ├── maxLevels.png │ ├── setDoubloons.png │ ├── startHeist.png │ ├── swapDoubloons.png │ └── takeDoubloons.png └── workshop │ ├── removeDistractions.png │ ├── sendDistraction.png │ ├── setToys.png │ ├── setToysPerQ.png │ └── swapToys.png ├── cheats ├── Bookmarklets.html ├── KGui.js ├── KGui.min.js ├── README.md ├── brawl │ ├── doubleEnemyXp.js │ ├── doubleEnemyXp.min.js │ ├── halfEnemySpeed.js │ ├── halfEnemySpeed.min.js │ ├── instantKill.js │ ├── instantKill.min.js │ ├── invincibility.js │ ├── invincibility.min.js │ ├── killEnemies.js │ ├── killEnemies.min.js │ ├── magnet.js │ ├── magnet.min.js │ ├── maxCurrentAbilities.js │ ├── maxCurrentAbilities.min.js │ ├── nextLevel.js │ ├── nextLevel.min.js │ ├── readme.md │ ├── removeObstacles.js │ ├── removeObstacles.min.js │ ├── resetHealth.js │ └── resetHealth.min.js ├── cafe │ ├── maxItems.js │ ├── maxItems.min.js │ ├── readme.md │ ├── removeCustomers.js │ ├── removeCustomers.min.js │ ├── resetAbilities.js │ ├── resetAbilities.min.js │ ├── setCash.js │ ├── setCash.min.js │ ├── stockFood.js │ └── stockFood.min.js ├── crypto │ ├── alwaysTriple.js │ ├── alwaysTriple.min.js │ ├── autoGuess.js │ ├── autoGuess.min.js │ ├── choiceESP.js │ ├── choiceESP.min.js │ ├── passwordESP.js │ ├── passwordESP.min.js │ ├── readme.md │ ├── removeHack.js │ ├── removeHack.min.js │ ├── setCrypto.js │ ├── setCrypto.min.js │ ├── setPassword.js │ ├── setPassword.min.js │ ├── stealPlayersCrypto.js │ └── stealPlayersCrypto.min.js ├── dinos │ ├── autoChoose.js │ ├── autoChoose.min.js │ ├── readme.md │ ├── rockESP.js │ ├── rockESP.min.js │ ├── setFossils.js │ ├── setFossils.min.js │ ├── setMultiplier.js │ ├── setMultiplier.min.js │ ├── stopCheating.js │ └── stopCheating.min.js ├── doom │ ├── fillDeck.js │ ├── fillDeck.min.js │ ├── maxCards.js │ ├── maxCards.min.js │ ├── maxHealth.js │ ├── maxHealth.min.js │ ├── maxStats.js │ ├── maxStats.min.js │ ├── minEnemy.js │ ├── minEnemy.min.js │ ├── readme.md │ ├── setCoins.js │ └── setCoins.min.js ├── factory │ ├── chooseBlook.js │ ├── chooseBlook.min.js │ ├── freeUpgrades.js │ ├── freeUpgrades.min.js │ ├── maxBlooks.js │ ├── maxBlooks.min.js │ ├── readme.md │ ├── removeGlitches.js │ ├── removeGlitches.min.js │ ├── sendGlitch.js │ ├── sendGlitch.min.js │ ├── setAllMegaBot.js │ ├── setAllMegaBot.min.js │ ├── setCash.js │ └── setCash.min.js ├── fishing │ ├── frenzy.js │ ├── frenzy.min.js │ ├── readme.md │ ├── removeDistraction.js │ ├── removeDistraction.min.js │ ├── sendDistraction.js │ ├── sendDistraction.min.js │ ├── setLure.js │ ├── setLure.min.js │ ├── setWeight.js │ └── setWeight.min.js ├── flappy │ ├── readme.md │ ├── setScore.js │ ├── setScore.min.js │ ├── toggleGhost.js │ └── toggleGhost.min.js ├── global │ ├── autoAnswer.js │ ├── autoAnswer.min.js │ ├── changeBlookIngame.js │ ├── changeBlookIngame.min.js │ ├── everyAnswerCorrect.js │ ├── everyAnswerCorrect.min.js │ ├── getDailyRewards.js │ ├── getDailyRewards.min.js │ ├── highlightAnswers.js │ ├── highlightAnswers.min.js │ ├── hostAnyGamemode.js │ ├── hostAnyGamemode.min.js │ ├── intervals │ │ ├── README.md │ │ ├── autoAnswer.js │ │ ├── autoAnswer.min.js │ │ ├── highlightAnswers.js │ │ ├── highlightAnswers.min.js │ │ ├── percentAutoAnswer.js │ │ ├── percentAutoAnswer.min.js │ │ ├── subtleHighlightAnswers.js │ │ └── subtleHighlightAnswers.min.js │ ├── preventSuspension.js │ ├── preventSuspension.min.js │ ├── readme.md │ ├── removeRandomName.js │ ├── removeRandomName.min.js │ ├── sellDuplicateBlooks.js │ ├── sellDuplicateBlooks.min.js │ ├── spamBuyBlooks.js │ ├── spamBuyBlooks.min.js │ ├── subtleHighlightAnswers.js │ ├── subtleHighlightAnswers.min.js │ ├── useAnyBlook.js │ └── useAnyBlook.min.js ├── gold │ ├── README.md │ ├── alwaysTriple.js │ ├── alwaysTriple.min.js │ ├── autoChoose.js │ ├── autoChoose.min.js │ ├── autoChooseOnce.js │ ├── autoChooseOnce.min.js │ ├── chestESP.js │ ├── chestESP.min.js │ ├── removeBadChoices.js │ ├── removeBadChoices.min.js │ ├── resetPlayersGold.js │ ├── resetPlayersGold.min.js │ ├── setGold.js │ ├── setGold.min.js │ ├── setPlayersGold.js │ ├── setPlayersGold.min.js │ ├── swapGold.js │ └── swapGold.min.js ├── gui.js ├── gui.min.js ├── kingdom │ ├── choiceESP.js │ ├── choiceESP.min.js │ ├── choiceESPLoop.js │ ├── choiceESPLoop.min.js │ ├── disableToucan.js │ ├── disableToucan.min.js │ ├── maxStats.js │ ├── maxStats.min.js │ ├── readme.md │ ├── setGuests.js │ ├── setGuests.min.js │ ├── skipGuest.js │ └── skipGuest.min.js ├── mobileGui.js ├── mobileGui.min.js ├── racing │ ├── instantWin.js │ ├── instantWin.min.js │ ├── readme.md │ ├── setQuestions.js │ └── setQuestions.min.js ├── reactGui.js ├── reactGui.min.js ├── royale │ ├── autoAnswer.js │ ├── autoAnswer.min.js │ ├── intervals │ │ ├── README.md │ │ ├── autoAnswer.js │ │ └── autoAnswer.min.js │ └── readme.md ├── rush │ ├── readme.md │ ├── setBlooks.js │ ├── setBlooks.min.js │ ├── setDefense.js │ └── setDefense.min.js ├── tower-defense-2 │ ├── maxTowers.js │ ├── maxTowers.min.js │ ├── readme.md │ ├── removeEnemies.js │ ├── removeEnemies.min.js │ ├── setCoins.js │ ├── setCoins.min.js │ ├── setHealth.js │ ├── setHealth.min.js │ ├── setRound.js │ └── setRound.min.js ├── tower-defense │ ├── earthquake.js │ ├── earthquake.min.js │ ├── maxTowers.js │ ├── maxTowers.min.js │ ├── readme.md │ ├── removeDucks.js │ ├── removeDucks.min.js │ ├── removeEnemies.js │ ├── removeEnemies.min.js │ ├── removeObsticles.js │ ├── removeObsticles.min.js │ ├── setDmg.js │ ├── setDmg.min.js │ ├── setRound.js │ ├── setRound.min.js │ ├── setTokens.js │ └── setTokens.min.js ├── voyage │ ├── heistESP.js │ ├── heistESP.min.js │ ├── maxLevels.js │ ├── maxLevels.min.js │ ├── readme.md │ ├── setDoubloons.js │ ├── setDoubloons.min.js │ ├── startHeist.js │ ├── startHeist.min.js │ ├── swapDoubloons.js │ ├── swapDoubloons.min.js │ ├── takeDoubloons.js │ └── takeDoubloons.min.js └── workshop │ ├── readme.md │ ├── removeDistractions.js │ ├── removeDistractions.min.js │ ├── sendDistraction.js │ ├── sendDistraction.min.js │ ├── setToys.js │ ├── setToys.min.js │ ├── setToysPerQ.js │ ├── setToysPerQ.min.js │ ├── swapToys.js │ └── swapToys.min.js └── tutorial ├── GoogleChrome.md ├── MicrosoftEdge.md ├── OperaGX.md ├── chrome ├── part (1).png ├── part (2).png ├── part (3).png ├── part (4).png ├── part (5).png ├── part (6).png └── part (7).png ├── edge ├── part (1).png ├── part (10).png ├── part (11).png ├── part (12).png ├── part (2).png ├── part (3).png ├── part (4).png ├── part (5).png ├── part (6).png ├── part (7).png ├── part (8).png └── part (9).png ├── operagx ├── part (1).png ├── part (2).png ├── part (3).png ├── part (4).png ├── part (5).png ├── part (6).png ├── part (7).png └── part (8).png └── readme.md /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- 1 | name: Bug Report 2 | description: Report an issue or problem with a script 3 | title: "BUG: (script name)" 4 | labels: ["bug"] 5 | assignees: 6 | - 05Konzz 7 | body: 8 | - type: input 9 | id: script 10 | attributes: 11 | label: Script 12 | description: Which script is causing the problem? 13 | placeholder: scriptname.js 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: problem 18 | attributes: 19 | label: Problem 20 | description: What's the problem with the script? 21 | placeholder: Describe the issue 22 | validations: 23 | required: true 24 | - type: dropdown 25 | id: method 26 | attributes: 27 | label: Method 28 | description: How did you run the script? 29 | multiple: true 30 | options: 31 | - Imported Bookmarklets.html 32 | - "Put 'javascript:(code)' in the url bar or a bookmark" 33 | - Pasted script into console 34 | - Other (described in Extra Info section) 35 | validations: 36 | required: true 37 | - type: dropdown 38 | id: type 39 | attributes: 40 | label: Type 41 | description: Normal or minified 42 | multiple: true 43 | options: 44 | - Normal 45 | - Minified 46 | validations: 47 | required: true 48 | - type: textarea 49 | attributes: 50 | label: Extra Info 51 | description: Any extra info (ie screenshots or any important info) 52 | validations: 53 | required: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/skid_report.yml: -------------------------------------------------------------------------------- 1 | name: Skid Report 2 | description: Report someone stealing our scripts or violating the license 3 | title: "SKID: " 4 | labels: ["skid"] 5 | assignees: 6 | - 05Konzz 7 | body: 8 | - type: input 9 | id: skid 10 | attributes: 11 | label: Skid 12 | description: Link to the skid 13 | placeholder: https://github.com/skidname/skid 14 | validations: 15 | required: true 16 | - type: textarea 17 | id: stolen 18 | attributes: 19 | label: Stolen 20 | description: What was stolen? 21 | placeholder: Stolen code 22 | validations: 23 | required: true 24 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.yml: -------------------------------------------------------------------------------- 1 | name: Suggestion 2 | description: Suggest a cheat or script 3 | title: "IDEA: Script idea name" 4 | labels: ["enhancement"] 5 | body: 6 | - type: input 7 | id: gamemode 8 | attributes: 9 | label: Gamemode 10 | description: Gamemode for cheat to be for 11 | placeholder: Gamemode 12 | - type: textarea 13 | id: function 14 | attributes: 15 | label: Function 16 | description: What does the script do? 17 | placeholder: Script function 18 | validations: 19 | required: true 20 | - type: dropdown 21 | id: confirm 22 | attributes: 23 | label: FaQ 24 | description: Please make sure to read [the FaQ](https://github.com/Blooket-Council/Blooket-Cheats#information) before submitting any suggestions 25 | multiple: true 26 | options: 27 | - I have not read the FaQ 28 | - I have read the FaQ and my suggestion has not already been asked for or isn't possible 29 | validations: 30 | required: true -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | # Changes 2 | **Describe what your changes/additions are and what they do:** -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | test/ 2 | scripts/ 3 | process/ 4 | methods.js -------------------------------------------------------------------------------- /autoupdate/KGui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/KGui.png -------------------------------------------------------------------------------- /autoupdate/brawl/doubleEnemyXp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/doubleEnemyXp.png -------------------------------------------------------------------------------- /autoupdate/brawl/halfEnemySpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/halfEnemySpeed.png -------------------------------------------------------------------------------- /autoupdate/brawl/instantKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/instantKill.png -------------------------------------------------------------------------------- /autoupdate/brawl/invincibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/invincibility.png -------------------------------------------------------------------------------- /autoupdate/brawl/killEnemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/killEnemies.png -------------------------------------------------------------------------------- /autoupdate/brawl/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/magnet.png -------------------------------------------------------------------------------- /autoupdate/brawl/maxCurrentAbilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/maxCurrentAbilities.png -------------------------------------------------------------------------------- /autoupdate/brawl/nextLevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/nextLevel.png -------------------------------------------------------------------------------- /autoupdate/brawl/removeObstacles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/removeObstacles.png -------------------------------------------------------------------------------- /autoupdate/brawl/resetHealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/brawl/resetHealth.png -------------------------------------------------------------------------------- /autoupdate/cafe/maxItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/cafe/maxItems.png -------------------------------------------------------------------------------- /autoupdate/cafe/removeCustomers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/cafe/removeCustomers.png -------------------------------------------------------------------------------- /autoupdate/cafe/resetAbilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/cafe/resetAbilities.png -------------------------------------------------------------------------------- /autoupdate/cafe/setCash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/cafe/setCash.png -------------------------------------------------------------------------------- /autoupdate/cafe/stockFood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/cafe/stockFood.png -------------------------------------------------------------------------------- /autoupdate/crypto/alwaysTriple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/crypto/alwaysTriple.png -------------------------------------------------------------------------------- /autoupdate/crypto/autoGuess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/crypto/autoGuess.png -------------------------------------------------------------------------------- /autoupdate/crypto/choiceESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/crypto/choiceESP.png -------------------------------------------------------------------------------- /autoupdate/crypto/passwordESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/crypto/passwordESP.png -------------------------------------------------------------------------------- /autoupdate/crypto/removeHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/crypto/removeHack.png -------------------------------------------------------------------------------- /autoupdate/crypto/setCrypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/crypto/setCrypto.png -------------------------------------------------------------------------------- /autoupdate/crypto/setPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/crypto/setPassword.png -------------------------------------------------------------------------------- /autoupdate/crypto/stealPlayersCrypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/crypto/stealPlayersCrypto.png -------------------------------------------------------------------------------- /autoupdate/dinos/autoChoose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/dinos/autoChoose.png -------------------------------------------------------------------------------- /autoupdate/dinos/rockESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/dinos/rockESP.png -------------------------------------------------------------------------------- /autoupdate/dinos/setFossils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/dinos/setFossils.png -------------------------------------------------------------------------------- /autoupdate/dinos/setMultiplier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/dinos/setMultiplier.png -------------------------------------------------------------------------------- /autoupdate/dinos/stopCheating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/dinos/stopCheating.png -------------------------------------------------------------------------------- /autoupdate/doom/fillDeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/doom/fillDeck.png -------------------------------------------------------------------------------- /autoupdate/doom/maxCards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/doom/maxCards.png -------------------------------------------------------------------------------- /autoupdate/doom/maxHealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/doom/maxHealth.png -------------------------------------------------------------------------------- /autoupdate/doom/maxStats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/doom/maxStats.png -------------------------------------------------------------------------------- /autoupdate/doom/minEnemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/doom/minEnemy.png -------------------------------------------------------------------------------- /autoupdate/doom/setCoins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/doom/setCoins.png -------------------------------------------------------------------------------- /autoupdate/factory/chooseBlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/factory/chooseBlook.png -------------------------------------------------------------------------------- /autoupdate/factory/freeUpgrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/factory/freeUpgrades.png -------------------------------------------------------------------------------- /autoupdate/factory/maxBlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/factory/maxBlooks.png -------------------------------------------------------------------------------- /autoupdate/factory/removeGlitches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/factory/removeGlitches.png -------------------------------------------------------------------------------- /autoupdate/factory/sendGlitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/factory/sendGlitch.png -------------------------------------------------------------------------------- /autoupdate/factory/setAllMegaBot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/factory/setAllMegaBot.png -------------------------------------------------------------------------------- /autoupdate/factory/setCash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/factory/setCash.png -------------------------------------------------------------------------------- /autoupdate/fishing/frenzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/fishing/frenzy.png -------------------------------------------------------------------------------- /autoupdate/fishing/removeDistraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/fishing/removeDistraction.png -------------------------------------------------------------------------------- /autoupdate/fishing/sendDistraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/fishing/sendDistraction.png -------------------------------------------------------------------------------- /autoupdate/fishing/setLure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/fishing/setLure.png -------------------------------------------------------------------------------- /autoupdate/fishing/setWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/fishing/setWeight.png -------------------------------------------------------------------------------- /autoupdate/flappy/setScore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/flappy/setScore.png -------------------------------------------------------------------------------- /autoupdate/flappy/toggleGhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/flappy/toggleGhost.png -------------------------------------------------------------------------------- /autoupdate/global/autoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/autoAnswer.png -------------------------------------------------------------------------------- /autoupdate/global/changeBlookIngame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/changeBlookIngame.png -------------------------------------------------------------------------------- /autoupdate/global/everyAnswerCorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/everyAnswerCorrect.png -------------------------------------------------------------------------------- /autoupdate/global/getDailyRewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/getDailyRewards.png -------------------------------------------------------------------------------- /autoupdate/global/highlightAnswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/highlightAnswers.png -------------------------------------------------------------------------------- /autoupdate/global/hostAnyGamemode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/hostAnyGamemode.png -------------------------------------------------------------------------------- /autoupdate/global/intervals/autoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/intervals/autoAnswer.png -------------------------------------------------------------------------------- /autoupdate/global/intervals/highlightAnswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/intervals/highlightAnswers.png -------------------------------------------------------------------------------- /autoupdate/global/intervals/percentAutoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/intervals/percentAutoAnswer.png -------------------------------------------------------------------------------- /autoupdate/global/intervals/subtleHighlightAnswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/intervals/subtleHighlightAnswers.png -------------------------------------------------------------------------------- /autoupdate/global/preventSuspension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/preventSuspension.png -------------------------------------------------------------------------------- /autoupdate/global/removeNameLimit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/removeNameLimit.png -------------------------------------------------------------------------------- /autoupdate/global/removeRandomName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/removeRandomName.png -------------------------------------------------------------------------------- /autoupdate/global/sellDuplicateBlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/sellDuplicateBlooks.png -------------------------------------------------------------------------------- /autoupdate/global/spamBuyBlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/spamBuyBlooks.png -------------------------------------------------------------------------------- /autoupdate/global/subtleHighlightAnswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/subtleHighlightAnswers.png -------------------------------------------------------------------------------- /autoupdate/global/useAnyBlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/global/useAnyBlook.png -------------------------------------------------------------------------------- /autoupdate/gold/alwaysTriple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/alwaysTriple.png -------------------------------------------------------------------------------- /autoupdate/gold/autoChoose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/autoChoose.png -------------------------------------------------------------------------------- /autoupdate/gold/autoChooseOnce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/autoChooseOnce.png -------------------------------------------------------------------------------- /autoupdate/gold/chestESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/chestESP.png -------------------------------------------------------------------------------- /autoupdate/gold/removeBadChoices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/removeBadChoices.png -------------------------------------------------------------------------------- /autoupdate/gold/resetPlayersGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/resetPlayersGold.png -------------------------------------------------------------------------------- /autoupdate/gold/setGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/setGold.png -------------------------------------------------------------------------------- /autoupdate/gold/setPlayersGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/setPlayersGold.png -------------------------------------------------------------------------------- /autoupdate/gold/swapGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gold/swapGold.png -------------------------------------------------------------------------------- /autoupdate/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/gui.png -------------------------------------------------------------------------------- /autoupdate/kingdom/choiceESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/kingdom/choiceESP.png -------------------------------------------------------------------------------- /autoupdate/kingdom/choiceESPLoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/kingdom/choiceESPLoop.png -------------------------------------------------------------------------------- /autoupdate/kingdom/disableToucan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/kingdom/disableToucan.png -------------------------------------------------------------------------------- /autoupdate/kingdom/maxStats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/kingdom/maxStats.png -------------------------------------------------------------------------------- /autoupdate/kingdom/setGuests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/kingdom/setGuests.png -------------------------------------------------------------------------------- /autoupdate/kingdom/skipGuest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/kingdom/skipGuest.png -------------------------------------------------------------------------------- /autoupdate/mobileGui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/mobileGui.png -------------------------------------------------------------------------------- /autoupdate/racing/instantWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/racing/instantWin.png -------------------------------------------------------------------------------- /autoupdate/racing/setQuestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/racing/setQuestions.png -------------------------------------------------------------------------------- /autoupdate/reactGui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/reactGui.png -------------------------------------------------------------------------------- /autoupdate/royale/autoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/royale/autoAnswer.png -------------------------------------------------------------------------------- /autoupdate/royale/intervals/autoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/royale/intervals/autoAnswer.png -------------------------------------------------------------------------------- /autoupdate/rush/setBlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/rush/setBlooks.png -------------------------------------------------------------------------------- /autoupdate/rush/setDefense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/rush/setDefense.png -------------------------------------------------------------------------------- /autoupdate/timestamps/KGui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/KGui.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/doubleEnemyXp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/doubleEnemyXp.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/halfEnemySpeed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/halfEnemySpeed.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/instantKill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/instantKill.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/invincibility.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/invincibility.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/killEnemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/killEnemies.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/magnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/magnet.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/maxCurrentAbilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/maxCurrentAbilities.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/nextLevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/nextLevel.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/removeObstacles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/removeObstacles.png -------------------------------------------------------------------------------- /autoupdate/timestamps/brawl/resetHealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/brawl/resetHealth.png -------------------------------------------------------------------------------- /autoupdate/timestamps/cafe/maxItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/cafe/maxItems.png -------------------------------------------------------------------------------- /autoupdate/timestamps/cafe/removeCustomers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/cafe/removeCustomers.png -------------------------------------------------------------------------------- /autoupdate/timestamps/cafe/resetAbilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/cafe/resetAbilities.png -------------------------------------------------------------------------------- /autoupdate/timestamps/cafe/setCash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/cafe/setCash.png -------------------------------------------------------------------------------- /autoupdate/timestamps/cafe/stockFood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/cafe/stockFood.png -------------------------------------------------------------------------------- /autoupdate/timestamps/crypto/alwaysTriple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/crypto/alwaysTriple.png -------------------------------------------------------------------------------- /autoupdate/timestamps/crypto/autoGuess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/crypto/autoGuess.png -------------------------------------------------------------------------------- /autoupdate/timestamps/crypto/choiceESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/crypto/choiceESP.png -------------------------------------------------------------------------------- /autoupdate/timestamps/crypto/passwordESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/crypto/passwordESP.png -------------------------------------------------------------------------------- /autoupdate/timestamps/crypto/removeHack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/crypto/removeHack.png -------------------------------------------------------------------------------- /autoupdate/timestamps/crypto/setCrypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/crypto/setCrypto.png -------------------------------------------------------------------------------- /autoupdate/timestamps/crypto/setPassword.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/crypto/setPassword.png -------------------------------------------------------------------------------- /autoupdate/timestamps/crypto/stealPlayersCrypto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/crypto/stealPlayersCrypto.png -------------------------------------------------------------------------------- /autoupdate/timestamps/dinos/autoChoose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/dinos/autoChoose.png -------------------------------------------------------------------------------- /autoupdate/timestamps/dinos/rockESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/dinos/rockESP.png -------------------------------------------------------------------------------- /autoupdate/timestamps/dinos/setFossils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/dinos/setFossils.png -------------------------------------------------------------------------------- /autoupdate/timestamps/dinos/setMultiplier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/dinos/setMultiplier.png -------------------------------------------------------------------------------- /autoupdate/timestamps/dinos/stopCheating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/dinos/stopCheating.png -------------------------------------------------------------------------------- /autoupdate/timestamps/doom/fillDeck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/doom/fillDeck.png -------------------------------------------------------------------------------- /autoupdate/timestamps/doom/maxCards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/doom/maxCards.png -------------------------------------------------------------------------------- /autoupdate/timestamps/doom/maxHealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/doom/maxHealth.png -------------------------------------------------------------------------------- /autoupdate/timestamps/doom/maxStats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/doom/maxStats.png -------------------------------------------------------------------------------- /autoupdate/timestamps/doom/minEnemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/doom/minEnemy.png -------------------------------------------------------------------------------- /autoupdate/timestamps/doom/setCoins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/doom/setCoins.png -------------------------------------------------------------------------------- /autoupdate/timestamps/factory/chooseBlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/factory/chooseBlook.png -------------------------------------------------------------------------------- /autoupdate/timestamps/factory/freeUpgrades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/factory/freeUpgrades.png -------------------------------------------------------------------------------- /autoupdate/timestamps/factory/maxBlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/factory/maxBlooks.png -------------------------------------------------------------------------------- /autoupdate/timestamps/factory/removeGlitches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/factory/removeGlitches.png -------------------------------------------------------------------------------- /autoupdate/timestamps/factory/sendGlitch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/factory/sendGlitch.png -------------------------------------------------------------------------------- /autoupdate/timestamps/factory/setAllMegaBot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/factory/setAllMegaBot.png -------------------------------------------------------------------------------- /autoupdate/timestamps/factory/setCash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/factory/setCash.png -------------------------------------------------------------------------------- /autoupdate/timestamps/fishing/frenzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/fishing/frenzy.png -------------------------------------------------------------------------------- /autoupdate/timestamps/fishing/removeDistraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/fishing/removeDistraction.png -------------------------------------------------------------------------------- /autoupdate/timestamps/fishing/sendDistraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/fishing/sendDistraction.png -------------------------------------------------------------------------------- /autoupdate/timestamps/fishing/setLure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/fishing/setLure.png -------------------------------------------------------------------------------- /autoupdate/timestamps/fishing/setWeight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/fishing/setWeight.png -------------------------------------------------------------------------------- /autoupdate/timestamps/flappy/setScore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/flappy/setScore.png -------------------------------------------------------------------------------- /autoupdate/timestamps/flappy/toggleGhost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/flappy/toggleGhost.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/autoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/autoAnswer.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/changeBlookIngame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/changeBlookIngame.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/everyAnswerCorrect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/everyAnswerCorrect.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/getDailyRewards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/getDailyRewards.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/highlightAnswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/highlightAnswers.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/hostAnyGamemode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/hostAnyGamemode.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/intervals/autoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/intervals/autoAnswer.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/intervals/highlightAnswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/intervals/highlightAnswers.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/intervals/percentAutoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/intervals/percentAutoAnswer.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/intervals/subtleHighlightAnswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/intervals/subtleHighlightAnswers.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/preventSuspension.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/preventSuspension.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/removeNameLimit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/removeNameLimit.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/removeRandomName.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/removeRandomName.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/sellDuplicateBlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/sellDuplicateBlooks.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/spamBuyBlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/spamBuyBlooks.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/subtleHighlightAnswers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/subtleHighlightAnswers.png -------------------------------------------------------------------------------- /autoupdate/timestamps/global/useAnyBlook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/global/useAnyBlook.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/alwaysTriple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/alwaysTriple.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/autoChoose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/autoChoose.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/autoChooseOnce.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/autoChooseOnce.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/chestESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/chestESP.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/removeBadChoices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/removeBadChoices.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/resetPlayersGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/resetPlayersGold.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/setGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/setGold.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/setPlayersGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/setPlayersGold.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gold/swapGold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gold/swapGold.png -------------------------------------------------------------------------------- /autoupdate/timestamps/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/gui.png -------------------------------------------------------------------------------- /autoupdate/timestamps/kingdom/choiceESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/kingdom/choiceESP.png -------------------------------------------------------------------------------- /autoupdate/timestamps/kingdom/choiceESPLoop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/kingdom/choiceESPLoop.png -------------------------------------------------------------------------------- /autoupdate/timestamps/kingdom/disableToucan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/kingdom/disableToucan.png -------------------------------------------------------------------------------- /autoupdate/timestamps/kingdom/maxStats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/kingdom/maxStats.png -------------------------------------------------------------------------------- /autoupdate/timestamps/kingdom/setGuests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/kingdom/setGuests.png -------------------------------------------------------------------------------- /autoupdate/timestamps/kingdom/skipGuest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/kingdom/skipGuest.png -------------------------------------------------------------------------------- /autoupdate/timestamps/mobileGui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/mobileGui.png -------------------------------------------------------------------------------- /autoupdate/timestamps/racing/instantWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/racing/instantWin.png -------------------------------------------------------------------------------- /autoupdate/timestamps/racing/setQuestions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/racing/setQuestions.png -------------------------------------------------------------------------------- /autoupdate/timestamps/reactGui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/reactGui.png -------------------------------------------------------------------------------- /autoupdate/timestamps/royale/autoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/royale/autoAnswer.png -------------------------------------------------------------------------------- /autoupdate/timestamps/royale/intervals/autoAnswer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/royale/intervals/autoAnswer.png -------------------------------------------------------------------------------- /autoupdate/timestamps/rush/setBlooks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/rush/setBlooks.png -------------------------------------------------------------------------------- /autoupdate/timestamps/rush/setDefense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/rush/setDefense.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense-2/maxTowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense-2/maxTowers.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense-2/removeEnemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense-2/removeEnemies.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense-2/setCoins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense-2/setCoins.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense-2/setHealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense-2/setHealth.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense-2/setRound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense-2/setRound.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense/earthquake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense/earthquake.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense/maxTowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense/maxTowers.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense/removeDucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense/removeDucks.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense/removeEnemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense/removeEnemies.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense/removeObsticles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense/removeObsticles.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense/setDmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense/setDmg.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense/setRound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense/setRound.png -------------------------------------------------------------------------------- /autoupdate/timestamps/tower-defense/setTokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/tower-defense/setTokens.png -------------------------------------------------------------------------------- /autoupdate/timestamps/voyage/heistESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/voyage/heistESP.png -------------------------------------------------------------------------------- /autoupdate/timestamps/voyage/maxLevels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/voyage/maxLevels.png -------------------------------------------------------------------------------- /autoupdate/timestamps/voyage/setDoubloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/voyage/setDoubloons.png -------------------------------------------------------------------------------- /autoupdate/timestamps/voyage/startHeist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/voyage/startHeist.png -------------------------------------------------------------------------------- /autoupdate/timestamps/voyage/swapDoubloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/voyage/swapDoubloons.png -------------------------------------------------------------------------------- /autoupdate/timestamps/voyage/takeDoubloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/voyage/takeDoubloons.png -------------------------------------------------------------------------------- /autoupdate/timestamps/workshop/removeDistractions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/workshop/removeDistractions.png -------------------------------------------------------------------------------- /autoupdate/timestamps/workshop/sendDistraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/workshop/sendDistraction.png -------------------------------------------------------------------------------- /autoupdate/timestamps/workshop/setToys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/workshop/setToys.png -------------------------------------------------------------------------------- /autoupdate/timestamps/workshop/setToysPerQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/workshop/setToysPerQ.png -------------------------------------------------------------------------------- /autoupdate/timestamps/workshop/swapToys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/timestamps/workshop/swapToys.png -------------------------------------------------------------------------------- /autoupdate/tower-defense-2/maxTowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense-2/maxTowers.png -------------------------------------------------------------------------------- /autoupdate/tower-defense-2/removeEnemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense-2/removeEnemies.png -------------------------------------------------------------------------------- /autoupdate/tower-defense-2/setCoins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense-2/setCoins.png -------------------------------------------------------------------------------- /autoupdate/tower-defense-2/setHealth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense-2/setHealth.png -------------------------------------------------------------------------------- /autoupdate/tower-defense-2/setRound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense-2/setRound.png -------------------------------------------------------------------------------- /autoupdate/tower-defense/earthquake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense/earthquake.png -------------------------------------------------------------------------------- /autoupdate/tower-defense/maxTowers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense/maxTowers.png -------------------------------------------------------------------------------- /autoupdate/tower-defense/removeDucks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense/removeDucks.png -------------------------------------------------------------------------------- /autoupdate/tower-defense/removeEnemies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense/removeEnemies.png -------------------------------------------------------------------------------- /autoupdate/tower-defense/removeObsticles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense/removeObsticles.png -------------------------------------------------------------------------------- /autoupdate/tower-defense/setDmg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense/setDmg.png -------------------------------------------------------------------------------- /autoupdate/tower-defense/setRound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense/setRound.png -------------------------------------------------------------------------------- /autoupdate/tower-defense/setTokens.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/tower-defense/setTokens.png -------------------------------------------------------------------------------- /autoupdate/voyage/heistESP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/voyage/heistESP.png -------------------------------------------------------------------------------- /autoupdate/voyage/maxLevels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/voyage/maxLevels.png -------------------------------------------------------------------------------- /autoupdate/voyage/setDoubloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/voyage/setDoubloons.png -------------------------------------------------------------------------------- /autoupdate/voyage/startHeist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/voyage/startHeist.png -------------------------------------------------------------------------------- /autoupdate/voyage/swapDoubloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/voyage/swapDoubloons.png -------------------------------------------------------------------------------- /autoupdate/voyage/takeDoubloons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/voyage/takeDoubloons.png -------------------------------------------------------------------------------- /autoupdate/workshop/removeDistractions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/workshop/removeDistractions.png -------------------------------------------------------------------------------- /autoupdate/workshop/sendDistraction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/workshop/sendDistraction.png -------------------------------------------------------------------------------- /autoupdate/workshop/setToys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/workshop/setToys.png -------------------------------------------------------------------------------- /autoupdate/workshop/setToysPerQ.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/workshop/setToysPerQ.png -------------------------------------------------------------------------------- /autoupdate/workshop/swapToys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/autoupdate/workshop/swapToys.png -------------------------------------------------------------------------------- /cheats/README.md: -------------------------------------------------------------------------------- 1 | # Cheats 2 | 3 | ## [Gui](gui.js) 4 | A GUI containing every cheat in a menu 5 | 6 | ## [Mobile Gui](mobileGui.js) 7 | The first GUI, basic UI reportedly good on mobile[^1] 8 | 9 | ## [React Gui](reactGui.js) 10 | A GUI written in React made to get around Blooket's anti-cheat 11 | 12 | ## [K Gui](KGui.js) 13 | A new GUI with several new features and design changes 14 | 15 | ### [Brawl](brawl) 16 | 17 | ### [Cafe](cafe) 18 | 19 | ### [Crypto](crypto) 20 | 21 | ### [Dinos](dinos) 22 | 23 | ### [Doom](doom) 24 | 25 | ### [Factory](factory) 26 | 27 | ### [Fishing](fishing) 28 | 29 | ### [Flappy](flappy) 30 | 31 | ### [Global](global) 32 | 33 | ### [Gold](gold) 34 | 35 | ### [Kingdom](kingdom) 36 | 37 | ### [Racing](racing) 38 | 39 | ### [Royale](royale) 40 | 41 | ### [Rush](rush) 42 | 43 | ### [Tower-defense](tower-defense) 44 | 45 | ### [Tower-defense-2](tower-defense-2) 46 | 47 | ### [Voyage](voyage) 48 | 49 | ### [Workshop](workshop) 50 | 51 | [^1] Not actually designed for mobile -------------------------------------------------------------------------------- /cheats/brawl/invincibility.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tbrawl/invincibility","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769902516;let h;const u=async()=>{for(const e of Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.game.current.config.sceneConfig.physics.world.colliders._active.filter(e=>e.callbackContext?.toString().includes("invulnerableTime")||e.callbackContext?.toString().includes("dmgCd")))e.collideCallback=()=>{}};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/brawl/invincibility.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/brawl/killEnemies.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tbrawl/killEnemies","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769902599;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.game.current.config.sceneConfig.physics.world.bodies.entries.forEach(e=>e?.gameObject?.receiveDamage?.(e.gameObject.hp,1))};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/brawl/killEnemies.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/brawl/magnet.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tbrawl/magnet","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769902683;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.game.current.config.sceneConfig.physics.world.colliders._active.find(e=>e.collideCallback?.toString().includes("magnetTime")).collideCallback({active:!0},{active:!0,setActive(){},setVisible(){}})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/brawl/magnet.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/brawl/nextLevel.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tbrawl/nextLevel","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769902958;let h;const u=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"],{object1:t,object2:o}=e.game.current.config.sceneConfig.physics.world.colliders._active.find(e=>e.collideCallback?.toString().includes('emit("xp'));o.get().spawn(t.x,t.y,(1===(o=e.state.level)?1:o<5?5:o<10?10:o<20?20:o<30?30:o<40?40:o<50?50:100)-e.xp)};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/brawl/nextLevel.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/brawl/readme.md: -------------------------------------------------------------------------------- 1 | # Monster Brawl 2 | 3 | ## [Double Enemy Xp](doubleEnemyXp.js) 4 | Doubles enemy XP drop value 5 | 6 | ## [Half Enemy Speed](halfEnemySpeed.js) 7 | Makes enemies move 2x slower 8 | 9 | ## [Instant Kill](instantKill.js) 10 | Sets all enemies health to 1 11 | 12 | ## [Invincibility](invincibility.js) 13 | Removes collision handler for enemies 14 | 15 | ## [Kill Enemies](killEnemies.js) 16 | Kills all current enemies 17 | 18 | ## [Magnet](magnet.js) 19 | Pulls all XP towards you 20 | 21 | ## [Max Current Abilities](maxCurrentAbilities.js) 22 | Sets all your current abilities to 10 23 | 24 | ## [Next Level](nextLevel.js) 25 | Gives you the remaining XP needed to level up 26 | 27 | ## [Remove Obstacles](removeObstacles.js) 28 | Removes all rocks/gears and any other object on the map 29 | 30 | ## [Reset Health](resetHealth.js) 31 | Resets health and gives invincibility for 3 seconds -------------------------------------------------------------------------------- /cheats/brawl/removeObstacles.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tbrawl/removeObstacles","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903053;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.game.current.config.sceneConfig.physics.world.bodies.entries.forEach(e=>{try{e.gameObject.frame.texture.key.includes("obstacle")&&e.gameObject.destroy()}catch{}})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/brawl/removeObstacles.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/brawl/resetHealth.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tbrawl/resetHealth","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903143;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.game.current.events._events.respawn.fn()};let w=new Image;w.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/brawl/resetHealth.png?"+Date.now(),w.crossOrigin="Anonymous",w.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(w,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{w.onerror=w.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/cafe/maxItems.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tcafe/maxItems","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903219;let h;const m=async()=>{var e=document.createElement("iframe");document.body.append(e),window.alert=e.contentWindow.alert.bind(window),e.remove(),"/cafe/shop"!==window.location.pathname?alert("This can only be run in the shop"):(e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"],e.setState({items:Object.keys(e.state.items).reduce((e,t)=>(e[t]=5,e),{})}))};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/cafe/maxItems.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{u.onerror=u.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/cafe/readme.md: -------------------------------------------------------------------------------- 1 | # Cafe 2 | 3 | ## [Max Items](maxItems.js) 4 | Maxes out items in the shop[^1] 5 | 6 | ## [Remove Customers](removeCustomers.js) 7 | Skips the current customers[^2] 8 | 9 | ## [Reset Abilities](resetAbilities.js) 10 | Resets the used abilities in the shop[^1] 11 | 12 | ## [Set Cash](setCash.js) 13 | Sets cafe cash 14 | 15 | ## [Stock Food](stockFood.js) 16 | Stocks all food to 99[^2] 17 | 18 | [^1] Only usable in the shop 19 | [^2] Not usable in the shop -------------------------------------------------------------------------------- /cheats/cafe/removeCustomers.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let l=document.querySelector("iframe");if(l||((l=document.createElement("iframe")).style.display="none",document.body.append(l)),l.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tcafe/removeCustomers","color: #0bc2cf; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903301;let h;const u=async()=>{const o=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];o.state.customers.forEach((e,t)=>window.setTimeout(()=>e.blook&&o.removeCustomer(t,!0),250*t))};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/cafe/removeCustomers.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/cafe/setCash.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tcafe/setCash","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903508;let h;const m=async()=>{var e=document.createElement("iframe"),e=(document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),parseInt(prompt("How much cash would you like?"))||0),t=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];t.setState({cafeCash:e}),t.props.liveGameController.setVal({path:`c/${t.props.client.name}/ca`,val:e})};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/cafe/setCash.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{u.onerror=u.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/cafe/stockFood.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tcafe/stockFood","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903594;let h;const u=async()=>{var e=document.createElement("iframe");document.body.append(e),window.alert=e.contentWindow.alert.bind(window),e.remove(),"/cafe"!==window.location.pathname?alert("This can't be run in the shop"):(e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"],e.setState({foods:e.state.foods.map(e=>({...e,stock:99,level:5}))}))};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/cafe/stockFood.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/crypto/alwaysTriple.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tcrypto/alwaysTriple","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903666;let h;const u=async()=>{window.setInterval(e=>Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState(e),25,{choices:[{type:"mult",val:3,rate:.075,blook:"Brainy Bot",text:"Triple Crypto"}]})};let w=new Image;w.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/crypto/alwaysTriple.png?"+Date.now(),w.crossOrigin="Anonymous",w.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(w,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{w.onerror=w.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/crypto/autoGuess.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tcrypto/autoGuess","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903757;let u;const h=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode["state"];if("hack"==e.stage)for(const t of document.querySelector("div[class*=buttonContainer]").children)t.innerText==e.correctPassword&&t.click()};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/crypto/autoGuess.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{f.onerror=f.onabort=null,h(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/crypto/passwordESP.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tcrypto/passwordESP","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769903936;let h;const u=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode["state"];if("hack"==e.stage)for(const t of document.querySelector("div[class*=buttonContainer]").children)t.innerText!=e.correctPassword&&(t.style.outlineColor="rgba(255, 64, 64, 0.8)",t.style.backgroundColor="rgba(255, 64, 64, 0.8)",t.style.textShadow="0 0 1px #f33")};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/crypto/passwordESP.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/crypto/readme.md: -------------------------------------------------------------------------------- 1 | # Crypto Hack 2 | 3 | ## [Always Triple](alwaysTriple.js) 4 | Always get triple crypto 5 | 6 | ## [Auto Guess](autoGuess.js) 7 | Selects the correct password when hacking 8 | 9 | ## [Choice ESP](choiceESP.js) 10 | Shows what's behind the choice boxes 11 | 12 | ## [Password ESP](passwordESP.js) 13 | Highlights the correct password 14 | 15 | ## [Remove Hack](removeHack.js) 16 | Removes an attacking hack 17 | 18 | ## [Set Crypto](setCrypto.js) 19 | Sets crypto 20 | 21 | ## [Set Password](setPassword.js) 22 | Sets hacking password 23 | 24 | ## [Steal Players Crypto](stealPlayersCrypto.js) 25 | Steals all of someone's crypto -------------------------------------------------------------------------------- /cheats/crypto/removeHack.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tcrypto/removeHack","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769904015;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({hack:""})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/crypto/removeHack.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/dinos/readme.md: -------------------------------------------------------------------------------- 1 | # Deceptive Dinos 2 | 3 | ## [Auto Choose](autoChoose.js) 4 | Automatically choose the best fossil when excavating 5 | 6 | ## [Rock ESP](rockESP.js) 7 | Shows what each rock will give you 8 | 9 | ## [Set Fossils](setFossils.js) 10 | Sets the amount of fossils you have 11 | 12 | ## [Set Multiplier](setMultiplier.js) 13 | Sets fossil multiplier 14 | 15 | ## [Stop Cheating](stopCheating.js) 16 | Undos cheating so you can't be caught -------------------------------------------------------------------------------- /cheats/dinos/setMultiplier.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tdinos/setMultiplier","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769904751;let u;const h=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({fossilMult:parseInt(prompt("What do you want your multiplier to be?"))||0})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/dinos/setMultiplier.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,h(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/dinos/stopCheating.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tdinos/stopCheating","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769904830;let h;const u=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e.setState({isCheating:!1}),e.props.liveGameController.setVal({path:`c/${e.props.client.name}/ic`,val:!1})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/dinos/stopCheating.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/doom/maxHealth.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let d=document.querySelector("iframe");if(d||((d=document.createElement("iframe")).style.display="none",document.body.append(d)),d.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),d.contentWindow.console.log.call(window,"%c\tdoom/maxHealth","color: #0bc2cf; font-size: 1rem"),d.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const s=1730769905111;let h;const m=async()=>{var e=document.createElement("iframe");document.body.append(e),window.alert=e.contentWindow.alert.bind(window),e.remove(),"/tower/battle"==window.location.pathname?Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({myHealth:100,myLife:100}):alert("You need to be in battle to run this cheat!")};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/doom/maxHealth.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{u.onerror=u.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/doom/readme.md: -------------------------------------------------------------------------------- 1 | # Tower of Doom 2 | 3 | ## [Fill Deck](fillDeck.js) 4 | Fills your deck with every maxed out card and artifact[^1] 5 | 6 | ## [Max Cards](maxCards.js) 7 | Maxes out all the cards in the deck[^2] 8 | 9 | ## [Max Health](maxHealth.js) 10 | Sets health to 100[^2] 11 | 12 | ## [Max Stats](maxStats.js) 13 | Sets all card stats to 20[^2] 14 | 15 | ## [Min Enemy](minEnemy.js) 16 | Sets all enemy stats to 0[^2] 17 | 18 | ## [Set Coins](setCoins.js) 19 | Tries to set the amount of coins you have[^2] 20 | 21 | [^1] Only runnable on the map 22 | [^2] Only runnable in battle -------------------------------------------------------------------------------- /cheats/factory/freeUpgrades.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tfactory/freeUpgrades","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769905866;let h;const u=async()=>{const t=[0,0,0,0];var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e.setState({blooks:e.state.blooks.map(e=>(e.price=t,e))})};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/factory/freeUpgrades.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/factory/maxBlooks.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tfactory/maxBlooks","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769905951;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.state.blooks.forEach(e=>e.level=4)};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/factory/maxBlooks.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/factory/readme.md: -------------------------------------------------------------------------------- 1 | # Factory 2 | 3 | ## [Choose Blook](chooseBlook.js) 4 | Gives you a blook 5 | 6 | ## [Free Upgrades](freeUpgrades.js) 7 | Sets upgrade prices to 0 for all current blooks 8 | 9 | ## [Max Blooks](maxBlooks.js) 10 | Sets all your blooks' levels to 5 11 | 12 | ## [Remove Glitches](removeGlitches.js) 13 | Removes all enemy glitches 14 | 15 | ## [Send Glitch](sendGlitch.js) 16 | Sends a random glitch 17 | 18 | ## [Set All Mega Bot](setAllMegaBot.js) 19 | Sets all your blooks to level 5 Mega Bots 20 | 21 | ## [Set Cash](setCash.js) 22 | Sets the amount of cash you have -------------------------------------------------------------------------------- /cheats/factory/setAllMegaBot.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tfactory/setAllMegaBot","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769906184;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({blooks:Array.from({length:10},()=>({name:"Mega Bot",color:"#d71f27",class:"🤖",rarity:"Legendary",cash:[8e4,43e4,42e5,62e6,1e9],time:[5,5,3,3,3],price:[7e6,12e7,19e8,35e9],active:!1,level:4,bonus:5.5}))})};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/factory/setAllMegaBot.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/factory/setCash.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tfactory/setCash","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769906274;let h;const u=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({cash:parseInt(prompt("How much cash would you like?"))||0})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/factory/setCash.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/fishing/frenzy.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tfishing/frenzy","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769906350;let h;const f=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e.props.liveGameController.setVal({path:"c/"+e.props.client.name,val:{b:e.props.client.blook,w:e.state.weight,f:"Frenzy",s:!0}})};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/fishing/frenzy.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{u.onerror=u.onabort=null,f(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/fishing/readme.md: -------------------------------------------------------------------------------- 1 | # Fishing Frenzy 2 | 3 | ## [Frenzy](frenzy.js) 4 | Causes a frenzy 5 | 6 | ## [Remove Distraction](removeDistraction.js) 7 | Removes enemy distractions 8 | 9 | ## [Send Distraction](sendDistraction.js) 10 | Sends a random distraction 11 | 12 | ## [Set Lure](setLure.js) 13 | Sets fishing lure (from 1-5) 14 | 15 | ## [Set Weight](setWeight.js) 16 | Sets fishing weight -------------------------------------------------------------------------------- /cheats/fishing/removeDistraction.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tfishing/removeDistraction","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769906430;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({party:""})};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/fishing/removeDistraction.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/fishing/setLure.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tfishing/setLure","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769906635;let h;const u=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({lure:Math.max(Math.min((parseInt(prompt("What would you like to set your lure to? (1 - 5)"))||0)-1,4),0)})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/fishing/setLure.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/flappy/readme.md: -------------------------------------------------------------------------------- 1 | # Flappy Blook 2 | 3 | ## [Set Score](setScore.js) 4 | Sets flappy blooks score 5 | 6 | ## [Toggle Ghost](toggleGhost.js) 7 | Lets you pass through the pipes -------------------------------------------------------------------------------- /cheats/flappy/setScore.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tflappy/setScore","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769906797;let u;const h=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(document.querySelector("#phaser-bouncy"))[0].return.updateQueue.lastEffect.deps[1](parseInt(prompt("What do you want to set your score to?"))||0)};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/flappy/setScore.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,h(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/flappy/toggleGhost.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tflappy/toggleGhost","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const h=1730769906888;let d;const u=async()=>{Object.values(document.querySelector("#phaser-bouncy"))[0].return.updateQueue.lastEffect.deps[0].current.config.sceneConfig.physics.world.bodies.entries.forEach(e=>{e.gameObject.frame.texture.key.startsWith("blook")&&(e.checkCollision.none=1==e.gameObject.alpha,e.gameObject.setAlpha(1==e.gameObject.alpha?.5:1))})};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/flappy/toggleGhost.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/global/changeBlookIngame.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tglobal/changeBlookIngame","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769907087;let h;const m=async()=>{var e=document.createElement("iframe"),e=(document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode)["props"];e.liveGameController.setVal({path:`c/${e.client.name}/b`,val:e.client.blook=prompt("Blook Name: (Case Sensitive)")})};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/global/changeBlookIngame.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{u.onerror=u.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/global/everyAnswerCorrect.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let l=document.querySelector("iframe");if(l||((l=document.createElement("iframe")).style.display="none",document.body.append(l)),l.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tglobal/everyAnswerCorrect","color: #0bc2cf; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769907160;let u;const h=async()=>{var t=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];for(let e=0;e{w.onerror=w.onabort=null,h(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/global/intervals/README.md: -------------------------------------------------------------------------------- 1 | # Global Intervals 2 | 3 | ## [Auto Answer](autoAnswer.js) 4 | Automatically answers questions for you 5 | 6 | ## [Highlight Answers](highlightAnswers.js) 7 | Automatically highlights correct answers in green and incorrect in red 8 | 9 | ## [Percent Auto Answer](percentAutoAnswer.js) 10 | Answers questions correctly or incorrectly depending on the input grade goal 11 | 12 | ## [Subtle Highlight Answers](subtleHighlightAnswers.js) 13 | Automatically removes the shadow from correct answer -------------------------------------------------------------------------------- /cheats/global/preventSuspension.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tglobal/preventSuspension","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const t=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return t.apply(this,arguments)}}const d=1730769907657;let h;const f=async()=>{if("function call() { [native code] }"==window.fetch.call.toString()){const t=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return t.apply(this,arguments)}}};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/global/preventSuspension.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var t=document.createElement("canvas").getContext("2d");t.drawImage(u,0,0,this.width,this.height);let e=t.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{u.onerror=u.onabort=null,f(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/global/readme.md: -------------------------------------------------------------------------------- 1 | # Global 2 | 3 | ## [Auto Answer](autoAnswer.js) 4 | Chooses the correct answer for the current question 5 | 6 | ## [Change Blook Ingame](changeBlookIngame.js) 7 | Changes your blook 8 | 9 | ## [Every Answer Correct](everyAnswerCorrect.js) 10 | Makes every answer correct 11 | 12 | ## [Get Daily Rewards](getDailyRewards.js) 13 | Gives max daily tokens and XP 14 | 15 | ## [Highlight Answers](highlightAnswers.js) 16 | Highlights the correct answers in green and incorrect in red 17 | 18 | ## [Host Any Gamemode](hostAnyGamemode.js) 19 | Lets you switch the current gamemode on the host settings page 20 | 21 | ## [Prevent Suspension](preventSuspension.js) 22 | Stops the API request that suspends accounts 23 | 24 | ## [Remove Random Name](removeRandomName.js) 25 | Lets you choose your own name in random name lobbys 26 | 27 | ## [Sell Duplicate Blooks](sellDuplicateBlooks.js) 28 | Sells all of your duplicate Uncommon to Epic blooks 29 | 30 | ## [Spam Buy Blooks](spamBuyBlooks.js) 31 | Opens a pack a an amount of times 32 | 33 | ## [Subtle Highlight Answers](subtleHighlightAnswers.js) 34 | Removes the shadow from correct answers 35 | 36 | ## [Use Any Blook](useAnyBlook.js) 37 | Lets you use any blook in a lobby and view every blook in the dashboard 38 | 39 | ### [Intervals](intervals) -------------------------------------------------------------------------------- /cheats/global/removeRandomName.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tglobal/removeRandomName","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769907859;let h;const m=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({isRandom:!1,client:{name:""}}),document.querySelector('[class*="nameInput"]')?.focus()};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/global/removeRandomName.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{u.onerror=u.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/gold/README.md: -------------------------------------------------------------------------------- 1 | # Gold Quest 2 | 3 | ## [Always Triple](alwaysTriple.js) 4 | Always get triple gold 5 | 6 | ## [Auto Choose](autoChoose.js) 7 | Automatically chooses the best chest to maximize gold 8 | 9 | ## [Auto Choose Once](autoChooseOnce.js) 10 | Chooses the best chest to maximize gold 11 | 12 | ## [Chest ESP](chestESP.js) 13 | Shows what each chest will give you 14 | 15 | ## [Reset Players Gold](resetPlayersGold.js) 16 | Sets a player's gold to 0 17 | 18 | ## [Set Gold](setGold.js) 19 | Sets current gold 20 | 21 | ## [Set Players Gold](setPlayersGold.js) 22 | Sets another player's gold 23 | 24 | ## [Swap Gold](swapGold.js) 25 | Swaps gold with another player 26 | 27 | ## [Remove Bad Choices](removeBadChoices.js) 28 | Removes the chance of getting Lose 25%, Lose 50%, and Nothing -------------------------------------------------------------------------------- /cheats/gold/alwaysTriple.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tgold/alwaysTriple","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769908732;let h;const u=async()=>{let t=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];0==t.state.gold&&t.setState({gold:100,gold2:100}),t._choosePrize||=t.choosePrize;const o={type:"multiply",val:3,text:"Triple Gold!",blook:"Unicorn"};t.choosePrize=function(e){t.state.choices[e]=o,t._choosePrize(e)}};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/gold/alwaysTriple.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/gold/setGold.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let d=document.querySelector("iframe");if(d||((d=document.createElement("iframe")).style.display="none",document.body.append(d)),d.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),d.contentWindow.console.log.call(window,"%c\tgold/setGold","color: #0bc2cf; font-size: 1rem"),d.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const s=1730769909959;let h;const m=async()=>{var e=document.createElement("iframe"),e=(document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),parseInt(prompt("How much gold would you like?"))||0),t=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];t.setState({gold:e,gold2:e}),t.props.liveGameController.setVal({path:"c/"+t.props.client.name+"/g",val:e})};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/gold/setGold.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{u.onerror=u.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/kingdom/disableToucan.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tkingdom/disableToucan","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769911061;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.taxCounter=Number.MAX_VALUE};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/kingdom/disableToucan.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/kingdom/maxStats.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tkingdom/maxStats","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769911134;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({materials:100,people:100,happiness:100,gold:100})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/kingdom/maxStats.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/kingdom/readme.md: -------------------------------------------------------------------------------- 1 | # Crazy Kingdom 2 | 3 | ## [Choice ESP](choiceESP.js) 4 | Shows you what will happen if you say Yes or No 5 | 6 | ## [Choice ESP Loop](choiceESPLoop.js) 7 | Automatically shows you what will happen if you say Yes or No 8 | 9 | ## [Disable Toucan](disableToucan.js) 10 | Never pay taxes (tax evasion) 11 | 12 | ## [Max Stats](maxStats.js) 13 | Sets all resources to 100 14 | 15 | ## [Set Guests](setGuests.js) 16 | Sets the amount of guests you've seen 17 | 18 | ## [Skip Guest](skipGuest.js) 19 | Skips the current guest -------------------------------------------------------------------------------- /cheats/kingdom/setGuests.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let l=document.querySelector("iframe");if(l||((l=document.createElement("iframe")).style.display="none",document.body.append(l)),l.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tkingdom/setGuests","color: #0bc2cf; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769911197;let u;const m=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({guestScore:parseInt(prompt("How many guests do you want?"))||0})};let h=new Image;h.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/kingdom/setGuests.png?"+Date.now(),h.crossOrigin="Anonymous",h.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(h,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{h.onerror=h.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/kingdom/skipGuest.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tkingdom/skipGuest","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769911282;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.nextGuest()};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/kingdom/skipGuest.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/racing/instantWin.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tracing/instantWin","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const t=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return t.apply(this,arguments)}}const d=1730769911375;let h;const u=async()=>{var t=Object.values(function t(e=document.querySelector("body>div")){return Object.values(e)[1]?.children?.[0]?._owner.stateNode?e:t(e.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];t.setState({progress:t.state.goalAmount}),t.props.liveGameController.setVal({path:"c/"+t.props.client.name+"/pr",val:t.state.goalAmount})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/racing/instantWin.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var t=document.createElement("canvas").getContext("2d");t.drawImage(m,0,0,this.width,this.height);let e=t.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/racing/readme.md: -------------------------------------------------------------------------------- 1 | # Racing 2 | 3 | ## [Instant Win](instantWin.js) 4 | Instantly wins the race 5 | 6 | ## [Set Questions](setQuestions.js) 7 | Sets the amount of questions you have left to answer -------------------------------------------------------------------------------- /cheats/royale/autoAnswer.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\troyale/autoAnswer","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769911642;let h;const u=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e?.onAnswer?.(!0,e.props.client.question.correctAnswers[0])};let w=new Image;w.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/royale/autoAnswer.png?"+Date.now(),w.crossOrigin="Anonymous",w.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(w,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{w.onerror=w.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/royale/intervals/README.md: -------------------------------------------------------------------------------- 1 | # Battle Royale Intervals 2 | 3 | ## [Auto Answer](autoAnswer.js) 4 | Automatically chooses the correct answer -------------------------------------------------------------------------------- /cheats/royale/intervals/autoAnswer.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\troyale/intervals/autoAnswer","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769911727;let h;const u=async()=>{setInterval(()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e?.onAnswer?.(!0,e.props.client.question.correctAnswers[0])},50)};let w=new Image;w.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/royale/intervals/autoAnswer.png?"+Date.now(),w.crossOrigin="Anonymous",w.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(w,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{w.onerror=w.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/royale/readme.md: -------------------------------------------------------------------------------- 1 | # Battle Royale 2 | 3 | ## [Auto Answer](autoAnswer.js) 4 | Chooses the correct answer 5 | 6 | ### [Intervals](intervals) -------------------------------------------------------------------------------- /cheats/rush/readme.md: -------------------------------------------------------------------------------- 1 | # Blook Rush 2 | 3 | ## [Set Blooks](setBlooks.js) 4 | Sets the amount of blooks you or your team has 5 | 6 | ## [Set Defense](setDefense.js) 7 | Sets the amount of defense you or your team has -------------------------------------------------------------------------------- /cheats/tower-defense-2/maxTowers.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let l=document.querySelector("iframe");if(l||((l=document.createElement("iframe")).style.display="none",document.body.append(l)),l.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\ttower-defense-2/maxTowers","color: #0bc2cf; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const t=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return t.apply(this,arguments)}}const d=1730769912823;let f;const u=async()=>{Object.values(function t(e=document.querySelector("body>div")){return Object.values(e)[1]?.children?.[0]?._owner.stateNode?e:t(e.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.state.towers.forEach(t=>{if(t.stats.dmg=1e6,t.stats.fireRate=50,t.stats.ghostDetect=!0,t.stats.maxTargets=1e6,t.stats.numProjectiles&&=100,t.stats.range=100,t.stats.auraBuffs)for(const e in t.stats.auraBuffs)t.stats.auraBuffs[e]*=100})};let h=new Image;h.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense-2/maxTowers.png?"+Date.now(),h.crossOrigin="Anonymous",h.onload=function(){var t=document.createElement("canvas").getContext("2d");t.drawImage(h,0,0,this.width,this.height);let e=t.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{h.onerror=h.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense-2/readme.md: -------------------------------------------------------------------------------- 1 | # Tower Defense 2 2 | 3 | ## [Max Towers](maxTowers.js) 4 | Makes all of your towers OP 5 | 6 | ## [Remove Enemies](removeEnemies.js) 7 | Kills all the enemies 8 | 9 | ## [Set Coins](setCoins.js) 10 | Sets the amount of coins you have 11 | 12 | ## [Set Health](setHealth.js) 13 | Sets the amount of health you have 14 | 15 | ## [Set Round](setRound.js) 16 | Sets the current round -------------------------------------------------------------------------------- /cheats/tower-defense-2/removeEnemies.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let l=document.querySelector("iframe");if(l||((l=document.createElement("iframe")).style.display="none",document.body.append(l)),l.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\ttower-defense-2/removeEnemies","color: #0bc2cf; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769912916;let h;const m=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e.game.current.config.sceneConfig.enemyQueue.length=0,e.game.current.config.sceneConfig.physics.world.bodies.entries.forEach(e=>e?.gameObject?.receiveDamage?.(e.gameObject.hp,1))};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense-2/removeEnemies.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{u.onerror=u.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense-2/setCoins.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\ttower-defense-2/setCoins","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769912991;let h;const u=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({coins:parseInt(prompt("How many tokens would you like?"))||0})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense-2/setCoins.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense-2/setHealth.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\ttower-defense-2/setHealth","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769913140;let h;const u=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({health:parseInt(prompt("How much health do you want?"))||0})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense-2/setHealth.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense-2/setRound.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let l=document.querySelector("iframe");if(l||((l=document.createElement("iframe")).style.display="none",document.body.append(l)),l.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\ttower-defense-2/setRound","color: #0bc2cf; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const s=1730769913230;let u;const h=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({round:parseInt(prompt("What round do you want to set to?"))||0})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense-2/setRound.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,h(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense/maxTowers.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\ttower-defense/maxTowers","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769912231;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.towers.forEach(e=>{e.range=100,e.fullCd=e.cd=0,e.damage=1e6})};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense/maxTowers.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense/readme.md: -------------------------------------------------------------------------------- 1 | # Tower Defense 2 | 3 | ## [Earthquake](earthquake.js) 4 | Triggers the earthquake event that shuffles around your towers 5 | 6 | ## [Max Towers](maxTowers.js) 7 | Makes all of your towers OP 8 | 9 | ## [Remove Ducks](removeDucks.js) 10 | Removes ducks from the map 11 | 12 | ## [Remove Enemies](removeEnemies.js) 13 | Removes all the enemies in the round 14 | 15 | ## [Remove Obsticles](removeObsticles.js) 16 | Lets you place towers anywhere on the map 17 | 18 | ## [Set Dmg](setDmg.js) 19 | Sets the amount of damage you have 20 | 21 | ## [Set Round](setRound.js) 22 | Sets the current round 23 | 24 | ## [Set Tokens](setTokens.js) 25 | Sets the amount of tokens you have -------------------------------------------------------------------------------- /cheats/tower-defense/removeDucks.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\ttower-defense/removeDucks","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769912307;let h;const u=async()=>{let{ducks:e,tiles:t}=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e.forEach(e=>t[e.y][e.x]=0),e.length=0};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense/removeDucks.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,c=0;for(;c{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense/removeEnemies.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\ttower-defense/removeEnemies","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769912382;let h;const u=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e.enemies=e.futureEnemies=[]};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense/removeEnemies.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense/removeObsticles.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\ttower-defense/removeObsticles","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769912484;let h;const u=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e.tiles=e.tiles.map(e=>e.fill(0))};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense/removeObsticles.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense/setDmg.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let d=document.querySelector("iframe");if(d||((d=document.createElement("iframe")).style.display="none",document.body.append(d)),d.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),d.contentWindow.console.log.call(window,"%c\ttower-defense/setDmg","color: #0bc2cf; font-size: 1rem"),d.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const s=1730769912574;let m;const h=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.dmg=parseInt(prompt("How much dmg would you like?"))||0};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense/setDmg.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{u.onerror=u.onabort=null,h(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense/setRound.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let l=document.querySelector("iframe");if(l||((l=document.createElement("iframe")).style.display="none",document.body.append(l)),l.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\ttower-defense/setRound","color: #0bc2cf; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const s=1730769912672;let u;const h=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({round:parseInt(prompt("What round do you want to set to?"))||0})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense/setRound.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,h(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/tower-defense/setTokens.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\ttower-defense/setTokens","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769912749;let h;const u=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({tokens:parseInt(prompt("How many tokens would you like?"))||0})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/tower-defense/setTokens.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/voyage/maxLevels.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tvoyage/maxLevels","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769913426;let h;const u=async()=>{var e=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];e.setState({islandLevels:new Array(e.state.islandLevels.length).fill(5)},e.updateBoatLevel)};let f=new Image;f.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/voyage/maxLevels.png?"+Date.now(),f.crossOrigin="Anonymous",f.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(f,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{f.onerror=f.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/voyage/readme.md: -------------------------------------------------------------------------------- 1 | # Pirate's Voyage 2 | 3 | ## [Heist ESP](heistESP.js) 4 | Shows you what's under each chest during a heist 5 | 6 | ## [Max Levels](maxLevels.js) 7 | Maxes out all islands and your boat 8 | 9 | ## [Set Doubloons](setDoubloons.js) 10 | Sets the amount of doubloons you have 11 | 12 | ## [Start Heist](startHeist.js) 13 | Starts a heist on someone 14 | 15 | ## [Swap Doubloons](swapDoubloons.js) 16 | Swaps doubloons with someone 17 | 18 | ## [Take Doubloons](takeDoubloons.js) 19 | Takes doubloons from someone -------------------------------------------------------------------------------- /cheats/workshop/readme.md: -------------------------------------------------------------------------------- 1 | # Santa's Workshop 2 | 3 | ## [Remove Distractions](removeDistractions.js) 4 | Removes all enemy distractions 5 | 6 | ## [Send Distraction](sendDistraction.js) 7 | Sends a random distraction 8 | 9 | ## [Set Toys](setToys.js) 10 | Sets the amount of toys you have 11 | 12 | ## [Set Toys Per Q](setToysPerQ.js) 13 | Sets the amount of toys you get per question 14 | 15 | ## [Swap Toys](swapToys.js) 16 | Swaps toys with someone -------------------------------------------------------------------------------- /cheats/workshop/removeDistractions.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tworkshop/removeDistractions","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769913948;let h;const u=async()=>{Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({fog:!1,dusk:!1,wind:!1,plow:!1,blizzard:!1,force:!1,canada:!1,trees:[!1,!1,!1,!1,!1,!1,!1,!1,!1,!1]})};let w=new Image;w.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/workshop/removeDistractions.png?"+Date.now(),w.crossOrigin="Anonymous",w.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(w,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{w.onerror=w.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/workshop/setToys.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let s=document.querySelector("iframe");if(s||((s=document.createElement("iframe")).style.display="none",document.body.append(s)),s.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tworkshop/setToys","color: #0bc2cf; font-size: 1rem"),s.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769914100;let h;const m=async()=>{var e=document.createElement("iframe"),e=(document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),parseInt(prompt("How many toys would you like?"))||0),t=Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner["stateNode"];t.setState({toys:e}),t.props.liveGameController.setVal({path:"c/"+t.props.client.name+"/t",val:e})};let u=new Image;u.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/workshop/setToys.png?"+Date.now(),u.crossOrigin="Anonymous",u.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(u,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{u.onerror=u.onabort=null,m(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /cheats/workshop/setToysPerQ.min.js: -------------------------------------------------------------------------------- 1 | /* All terms found in the following link apply: https://github.com/Blooket-Council/Blooket-Cheats/blob/main/LICENSE */ (()=>{let l=document.querySelector("iframe");if(l||((l=document.createElement("iframe")).style.display="none",document.body.append(l)),l.contentWindow.console.log.call(window,"%c Blooket Cheats %c\n\tBy 05Konzz on GitHub","color: #0bc2cf; font-size: 3rem","color: #8000ff; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tworkshop/setToysPerQ","color: #0bc2cf; font-size: 1rem"),l.contentWindow.console.log.call(window,"%c\tStar the github repo!%c https://github.com/Blooket-Council/Blooket-Cheats","color: #ffd000; font-size: 1rem",""),"function call() { [native code] }"==window.fetch.call.toString()){const e=window.fetch.call;window.fetch.call=function(){if(!arguments[1].includes("s.blooket.com/rc"))return e.apply(this,arguments)}}const d=1730769914169;let h;const u=async()=>{var e=document.createElement("iframe");document.body.append(e),window.prompt=e.contentWindow.prompt.bind(window),e.remove(),Object.values(function e(t=document.querySelector("body>div")){return Object.values(t)[1]?.children?.[0]?._owner.stateNode?t:e(t.querySelector(":scope>div"))}())[1].children[0]._owner.stateNode.setState({toysPerQ:parseInt(prompt("How many toys per question would you like?"))||0})};let m=new Image;m.src="https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/main/autoupdate/timestamps/workshop/setToysPerQ.png?"+Date.now(),m.crossOrigin="Anonymous",m.onload=function(){var e=document.createElement("canvas").getContext("2d");e.drawImage(m,0,0,this.width,this.height);let t=e.getImageData(0,0,this.width,this.height)["data"],o="",n,r=0;for(;r{m.onerror=m.onabort=null,u(),document.querySelector("iframe").contentWindow.alert("It seems the GitHub is either blocked or down.\n\nIf it's NOT blocked, join the Discord server for updates\nhttps://discord.gg/jHjGrrdXP6\n(The cheat will still run after this alert)")}})(); -------------------------------------------------------------------------------- /tutorial/GoogleChrome.md: -------------------------------------------------------------------------------- 1 | # 1. Navigate to `cheats` folder 2 | ![Google Chrome part 1](/tutorial/chrome/part%20(1).png) 3 | # 2. Open `Bookmarklets.html` file 4 | ![Google Chrome part 2](/tutorial/chrome/part%20(2).png) 5 | # 3. Click `Download raw file` 6 | ![Google Chrome part 3](/tutorial/chrome/part%20(3).png) 7 | # 4. Right click bookmarks bar > Bookmark manager 8 | ![Google Chrome part 4](/tutorial/chrome/part%20(4).png) 9 | # 5. Click 3 dots > Import bookmarks 10 | ![Google Chrome part 5](/tutorial/chrome/part%20(5).png) 11 | # 6. Choose saved file from step 3 12 | ![Google Chrome part 6](/tutorial/chrome/part%20(6).png) 13 | # 7. Happy cheating 14 | ![Google Chrome part 7](/tutorial/chrome/part%20(7).png) -------------------------------------------------------------------------------- /tutorial/MicrosoftEdge.md: -------------------------------------------------------------------------------- 1 | # 1. Navigate to `cheats` folder 2 | ![Microsoft Edge part 1](/tutorial/edge/part%20(1).png) 3 | # 2. Open `Bookmarklets.html` file 4 | ![Microsoft Edge part 2](/tutorial/edge/part%20(2).png) 5 | # 3. Click `Download raw file` 6 | ![Microsoft Edge part 3](/tutorial/edge/part%20(3).png) 7 | # 4. Ctrl + Shift + O or Right click bookmarks bar > Manage favorites 8 | ![Microsoft Edge part 4](/tutorial/edge/part%20(4).png) 9 | # 5. Click 3 dots > Import favorites 10 | ![Microsoft Edge part 5](/tutorial/edge/part%20(5).png) 11 | # 6. Import from IE11 12 | ![Microsoft Edge part 6](/tutorial/edge/part%20(6).png) 13 | # 7. Switch to `Favorites or bookmarks HTML file` 14 | ![Microsoft Edge part 7](/tutorial/edge/part%20(7).png) 15 | # 8. Click on `Choose File` and select saved file from step 3 16 | ![Microsoft Edge part 8](/tutorial/edge/part%20(8).png) 17 | # 9. Go back to favorites page and create a new folder 18 | ![Microsoft Edge part 9](/tutorial/edge/part%20(9).png) 19 | # 10. Open `Other favorites` folder and select all (Ctrl + A) 20 | ![Microsoft Edge part 10](/tutorial/edge/part%20(10).png) 21 | # 11. Drag to folder created in step 9 22 | ![Microsoft Edge part 11](/tutorial/edge/part%20(11).png) 23 | # 12. Happy cheating 24 | ![Microsoft Edge part 12](/tutorial/edge/part%20(12).png) -------------------------------------------------------------------------------- /tutorial/OperaGX.md: -------------------------------------------------------------------------------- 1 | # 1. Navigate to `cheats` folder 2 | ![Opera GX part 1](/tutorial/operagx/part%20(1).png) 3 | # 2. Open `Bookmarklets.html` file 4 | ![Opera GX part 2](/tutorial/operagx/part%20(2).png) 5 | # 3. Click `Download raw file` 6 | ![Opera GX part 3](/tutorial/operagx/part%20(3).png) 7 | # 4. Right click bookmarks bar > Bookmarks 8 | ![Opera GX part 4](/tutorial/operagx/part%20(4).png) 9 | # 5. Click Import/Export > Import bookmarks 10 | ![Opera GX part 5](/tutorial/operagx/part%20(5).png) 11 | # 6. Switch to `Bookmarks HTML file` 12 | ![Opera GX part 6](/tutorial/operagx/part%20(6).png) 13 | # 7. Choose saved file from step 3 14 | ![Opera GX part 7](/tutorial/operagx/part%20(7).png) 15 | # 8. Happy cheating 16 | ![Opera GX part 8](/tutorial/operagx/part%20(8).png) -------------------------------------------------------------------------------- /tutorial/chrome/part (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/chrome/part (1).png -------------------------------------------------------------------------------- /tutorial/chrome/part (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/chrome/part (2).png -------------------------------------------------------------------------------- /tutorial/chrome/part (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/chrome/part (3).png -------------------------------------------------------------------------------- /tutorial/chrome/part (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/chrome/part (4).png -------------------------------------------------------------------------------- /tutorial/chrome/part (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/chrome/part (5).png -------------------------------------------------------------------------------- /tutorial/chrome/part (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/chrome/part (6).png -------------------------------------------------------------------------------- /tutorial/chrome/part (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/chrome/part (7).png -------------------------------------------------------------------------------- /tutorial/edge/part (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (1).png -------------------------------------------------------------------------------- /tutorial/edge/part (10).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (10).png -------------------------------------------------------------------------------- /tutorial/edge/part (11).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (11).png -------------------------------------------------------------------------------- /tutorial/edge/part (12).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (12).png -------------------------------------------------------------------------------- /tutorial/edge/part (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (2).png -------------------------------------------------------------------------------- /tutorial/edge/part (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (3).png -------------------------------------------------------------------------------- /tutorial/edge/part (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (4).png -------------------------------------------------------------------------------- /tutorial/edge/part (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (5).png -------------------------------------------------------------------------------- /tutorial/edge/part (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (6).png -------------------------------------------------------------------------------- /tutorial/edge/part (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (7).png -------------------------------------------------------------------------------- /tutorial/edge/part (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (8).png -------------------------------------------------------------------------------- /tutorial/edge/part (9).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/edge/part (9).png -------------------------------------------------------------------------------- /tutorial/operagx/part (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/operagx/part (1).png -------------------------------------------------------------------------------- /tutorial/operagx/part (2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/operagx/part (2).png -------------------------------------------------------------------------------- /tutorial/operagx/part (3).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/operagx/part (3).png -------------------------------------------------------------------------------- /tutorial/operagx/part (4).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/operagx/part (4).png -------------------------------------------------------------------------------- /tutorial/operagx/part (5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/operagx/part (5).png -------------------------------------------------------------------------------- /tutorial/operagx/part (6).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/operagx/part (6).png -------------------------------------------------------------------------------- /tutorial/operagx/part (7).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/operagx/part (7).png -------------------------------------------------------------------------------- /tutorial/operagx/part (8).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blooket-Council/Blooket-Cheats/da83d4a52ea0c0fc986da8d898424c2c0f84c47f/tutorial/operagx/part (8).png -------------------------------------------------------------------------------- /tutorial/readme.md: -------------------------------------------------------------------------------- 1 | # Import Bookmarklets Tutorial 2 | ## Select the browser you are using 3 | ### [Opera GX](OperaGX.md) 4 | ### [Microsoft Edge](MicrosoftEdge.md) 5 | ### [Google Chrome](GoogleChrome.md) --------------------------------------------------------------------------------