Back to scripts

Auto Answer

game

Automatically answers questions correctly in game

2024-03-20v1.0.0Community

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

Usage

Steps

  1. Enter Blooket game room
  2. Wait for the game to start and show questions
  3. Open developer tools and paste the script
  4. The script will automatically select correct answers

Notes

  • This script only works during question rounds
  • Using this script may affect game fairness
  • Answer data may need updates if questions are updated

Requirements

  • Must be used during an active game
  • Requires stable internet connection

Code

function findAnswer() {
  const iframe = document.querySelector('iframe');
  if (!iframe) return false;
  
  const question = iframe.contentWindow.document.querySelector('.styles__questionText___2MlSZ-camelCase');
  if (!question) return false;
  
  const answers = Array.from(iframe.contentWindow.document.querySelectorAll('.styles__answerContainer___3WuiW-camelCase'));
  const correctAnswer = answers.find(answer => {
    const content = answer.textContent;
    // Add your answer logic here
    return content.includes('correct');
  });
  
  if (correctAnswer) {
    correctAnswer.click();
    return true;
  }
  
  return false;
}

setInterval(findAnswer, 100);

Changelog

Version 1.0.1

2024-03-10
  • Fixed answer detection issues
  • Optimized selection logic
  • Added more error prompts

Version 1.0.0

2024-03-05
  • Initial version release
  • Support auto-answer functionality
  • Added answer detection logic