Skribbl AutoGuesser

Automatically suggests guesses in Skribbl.io. Fast, easy, and effective.

< Feedback on Skribbl AutoGuesser

Review: Good - script works

§
Posted: 2025-10-20

Script works fine. Can you make it work such that it doesn't automatically input the last possible word available ? Instantly guessing the only word available when someone has not even started drawing makes it look like cheating

§
Posted: 2025-10-25

Script works fine. Can you make it work such that it doesn't automatically input the last possible word available? Instantly guessing the only word available when someone has not even started drawing makes it look like cheating.

You can delete this line in generateGuesses() if you don't want that feature:

if (possibleWords.length === 1) {
    input.value = possibleWords.shift();
    input.closest("form").dispatchEvent(new Event("submit", { bubbles: true, cancelable: true }));
}

Post reply

Sign in to post a reply.