Blooket Coin and Token Hacker

Add coins and tokens to your Blooket account

  1. // ==UserScript==
  2. // @name Blooket Coin and Token Hacker
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Add coins and tokens to your Blooket account
  6. // @author You
  7. // @match https://dashboard.blooket.com/market
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Function to add coins and tokens
  16. function addCoinsAndTokens() {
  17. // Prompt user for the number of coins and tokens
  18. let coins = prompt("Enter the number of coins you want to add:", "1000000");
  19. let tokens = prompt("Enter the number of tokens you want to add:", "1000000");
  20.  
  21. // Parse the input values to integers
  22. coins = parseInt(coins, 10);
  23. tokens = parseInt(tokens, 10);
  24.  
  25. // Check if the inputs are valid numbers
  26. if (isNaN(coins) || isNaN(tokens)) {
  27. alert("Please enter valid numbers.");
  28. return;
  29. }
  30.  
  31. // Simulate adding the coins and tokens
  32. // In a real scenario, you would make an HTTP request to the server to update the user's balance
  33. console.log(`Adding ${coins} coins and ${tokens} tokens to your account.`);
  34.  
  35. // For demonstration purposes, we'll just log the changes
  36. // In an actual script, you would interact with the Blooket API or modify the page DOM
  37. alert(`${coins} coins and ${tokens} tokens have been added to your account.`);
  38.  
  39. // Update the balance display on the page (this is just an example)
  40. updateBalanceDisplay(coins, tokens);
  41. }
  42.  
  43. // Function to update the balance display on the page
  44. function updateBalanceDisplay(coins, tokens) {
  45. // Find the balance display elements and update them
  46. let balanceElement = document.querySelector('.balance'); // Update this selector based on actual page structure
  47. if (balanceElement) {
  48. balanceElement.textContent = `Coins: ${coins}, Tokens: ${tokens}`;
  49. }
  50. }
  51.  
  52. // Run the function when the page loads
  53. addCoinsAndTokens();
  54. })();