🌍 “Click the Flag & Ask the Questions!”
Tip: “Different languages — same code.”
Short description:
In this project, you will remix a Scratch game. When you click a flag, the sprite says hello in that language and asks quiz questions. The English flag is already programmed. Your job is to add your country flag and create quiz questions in your own language.
👩🎓 Student Task
✅ Step 1: Log in to Scratch
- Go to scratch.mit.edu
- Click Sign in
- Log in with your Scratch account
✅ Step 2: Open the Teacher’s Project
- Open the Scratch link https://scratch.mit.edu/projects/1260098681
- Click See inside
✅ Step 3: Remix the Project
- Click Remix (top of the screen)
- A copy of the project is created
- This is now your team’s project
✅ Step 4: Save and Rename Your Project
- Click File → Save now
- Rename the project:
- Example: “Erasmus Flag Quiz – Team1 Slovakia”
✅ Step 5: Explore the Project
- You will see:
- A main robot sprite (already programmed)
- An English flag sprite (already programmed)
👉 Do not change the English flag or its code.
✅ Step 6: Add Your Country Flag
- Click Choose a Sprite
- Select or draw your country’s flag
- Rename the sprite:
- Example: Slovakia_Flag
✅ Step 7: Program Your Flag Sprite
- Click on your flag sprite and add this code:
- when this sprite clicked
- broadcast [Slovakia]
(Change Slovakia to your country name)
✅ Step 8: Program the Main Robot Sprite (Your Language)
- Click on the main sprite
- Find the code that starts with:
- when I receive [English ]
- Right-click → Duplicate this code
- Change:
- the broadcast name (Slovakia)
- the language
- the questions
🚫 Do not change the English code.
✅ Step 9: Add Quiz Questions
- Add 4 questions
- Give 5 points to each correct questions
- Questions must be in your language
- Answers must be correct
✅ Step 10: Test Your Project
- Click the English flag
- English quiz works ✔️
- Click your country flag
- Your quiz works ✔️
- Fix any mistakes.
✅ Step 11: Save and Share
- Click File → Save now
- Click Share
- Be ready to present your project
✅ Step 12: Advanced Option 1: Add Sound Feedback (Correct / Wrong)
Step A: Add Sounds
- Click the main sprite
- Open the Sounds tab
- Add:
- one happy sound (for correct answer)
- one sad sound (for wrong answer)
Step B: Use Sounds in the Code
Inside your if / else blocks, add:
- play sound [Correct ] until done
- play sound [Wrong ] until done
✅ Step 13: Advanced Option 2: Change the Background for Each Question
Step A: Add Backgrounds
-
Click the Stage
-
Open the Backdrops tab
-
Add:
-
one background for Question 1
-
one background for Question 2
-
one background for Question 3
one background for Question 4
-
Step B: Switch Backdrops in the Code
Before each question, add:
- switch backdrop to [Question ... ]
Step 14: Scratch & Lesson Understanding
Easy Check