Do you want to create an engaging quiz game in Scratch, but cloning feels too complicated? Here’s a simple way to show a question with three answer sprites, where one gives the correct answer and the others show random incorrect ones. This method uses no clones, just clear sprite logic and shared variables. Great for beginners!

What You’ll Need:
- 3 answer sprites (e.g. Answer1, Answer2, Answer3)
- One variable for each sprite:
MyAnswer
(make it “for this sprite only”) - Shared variables:
CorrectAnswer
Wrong1
,Wrong2
CorrectIndex
(randomly decides which sprite shows the correct answer)WrongUsed
(tracks which wrong answer has already been used)
How It Works
- When the game starts, Scratch randomly selects which of the 3 answer sprites will show the correct answer.
- The other two sprites automatically display the wrong answers (and no duplicates!).
- When any sprite is clicked, it checks if its answer is correct and responds with “Correct!” or “Try again!”
Code Overview
On the Stage (or Controller Sprite):

On Each Answer Sprite:

Want to Extend It?
- Use a list of questions and answers to build a full quiz!
- Add a score counter
- Include sound and costumes to make it even more fun
This simple quiz design is a perfect starting point for Scratch learners. It avoids tricky cloning logic but still delivers a dynamic, fun quiz experience. Great for classrooms, coding clubs, and home learning.
👉 Ready to try it? Open Scratch and start building! Or play existing Washingtone’s game at https://scratch.mit.edu/projects/1198201896/