1Set Up Your Catch Game
- Start a new Scratch project and delete the cat
- Name your project: "[Your Name]'s Catch Game"
- Add a background
- Create a "Score" variable
✅ What you just did:
You're ready to build a catch game with scoring!
2Add Your Player Character
- Choose a sprite to be your player (the catcher)
- Make it a good size (about 60)
- Add arrow key movement code:
- 4x when [arrow] key pressed
- 4x move 10 steps (different directions)
✅ What you just did:
Your player can now move around to catch things!
3Add Your First Target
- Add a new sprite that will be caught (apple, coin, star, etc.)
- Make it smaller than your player (about 40)
- Position it somewhere on the screen
✅ What you just did:
You added something for your player to catch!
4Make Targets Move Around
- Click your target sprite →
- Add: when flag clicked
- Add: forever
- Inside forever: glide 3 seconds to random position
✅ What you just did:
Your target now moves around the screen continuously!
5Add Catching Mechanics
- In the same target sprite, add another script:
- Add: when flag clicked
- Add: forever
- Add: if touching [player sprite]
- Inside if: change Score by 1
- Inside if: go to random position
✅ What you just did:
Now when you touch the target, you get points and it moves to a new spot!
6Add More Targets
- Right-click your target sprite and choose "duplicate"
- Repeat this to make 4-5 targets total
- Move each duplicate to different starting positions
- Now you have multiple things to catch!
✅ What you just did:
Your game now has multiple moving targets to catch!
7Test & Share
- Click the green flag and test your game
- Use arrow keys to chase and catch the moving targets
- Watch your score increase as you catch them
- Click full screen and challenge your classmates!
✅ What you just did:
You created a fun catch game that tests speed and coordination!