Back to scripts

Auto Spam

game

Automatically spams actions in game

2024-03-21v1.0.0Community

Use at your own risk. This script may violate Blooket's Terms of Service.

Usage

Steps

  1. Enter game interface
  2. Run the script
  3. Wait for automatic operation to complete

Notes

  • Script will automatically stop after 30 seconds
  • May affect gaming experience
  • Please be mindful of game rules when using

Requirements

  • Must be used in game interface
  • Browser must allow auto-clicking

Code

function autoSpam() {
  const buttons = document.querySelectorAll('button');
  let spamInterval;
  
  function spam() {
    buttons.forEach(button => {
      if (button.textContent.toLowerCase().includes('click') || 
          button.textContent.toLowerCase().includes('spam')) {
        button.click();
      }
    });
  }
  
  spamInterval = setInterval(spam, 50);
  
  // Auto-stop after 30 seconds
  setTimeout(() => {
    clearInterval(spamInterval);
    alert('Auto spam completed!');
  }, 30000);
}

autoSpam();

Changelog

Version 1.0.0

2024-03-21
  • Initial version release
  • Added auto-click functionality
  • Set 30-second auto-stop mechanism