Level 2: Don’t Fall In
| Course: Scratch Programming | Level: Level 2 | Project 11 of 35 |
Official Raspberry Pi Project
This lesson is based on the official Raspberry Pi Foundation project. Open it alongside this guide to access the starter project, step-by-step instructions and community remixes.
### [🍓 Open "Don't Fall In" on Raspberry Pi Projects →](https://projects.raspberrypi.org/en/projects/dont-fall-in)
How to use it: Click the link above, then click See Inside on the Scratch project to explore the finished version. Use Remix to get your own copy to edit.
What You Will Build
Create a game where a sprite must avoid falling into danger zones.
What You Will Learn
By the end of this project you will be able to:
- Use Events blocks to start scripts and respond to clicks
- Combine Motion, Looks and Sound blocks to create behaviours
- Use variables to track game state and scores
- Apply the specific Scratch concepts introduced in Level 2
You Will Need
| Item | Details |
|---|---|
| 🌐 Browser | Any modern browser — Chrome, Firefox or Edge |
| 🔶 Scratch account | Free at scratch.mit.edu |
| ⏱️ Time | Approximately 30–45 minutes |
| 📋 Starter project | Available via the Raspberry Pi link above |
Step-by-Step Guide
- Choose a dangerous backdrop: lava field, ocean, pit.
- Add a player sprite on a platform.
- Add platform sprites across the stage.
- Use
if touching [edge]andif y position < -150to detect falling. - Add gravity: in a forever loop,
change y by [-2]constantly. - When on a platform: stop falling using
if touching [platform] set y velocity to 0. - Use arrow keys to move left/right and spacebar to jump.
- Add
change y by [10]for the jump with gravity pulling back down. - If the player falls off: play a sound, reset position.
- Add a lives variable that decrements on each fall.
Extension Challenges
Try these after completing the main project:
- Add moving platforms that slide back and forth.
- Add collectible coins on platforms for bonus points.
- Add an enemy sprite that patrols certain platforms.
Reflection Questions
- Which Scratch blocks did you use most in this project?
- What would you add or change if you had more time?
- How could you reuse the ideas from this project in a different context?
Share Your Work
When your project is complete, click Share in Scratch and post the link to your class or the Techbase community.
| ← Back to Scratch Course | Next: Lesson 12 → |