Creating a story in the Scratch Projects Editor allows users to learn coding through creative, interactive scenes. The process involves selecting backdrops, adding sprites, and using blocks from the Events, Looks, and Sound categories to animate character dialogue and movement. Learn more about creating stories in the YouTube tutorial. How to Make a Story in Scratch | Tutorial
The editor has three distinct tabs at the top of the left panel.
Code: Contains 9 color-coded categories: scratchmitedu-projects-editor-tutorial-getstarted
when green flag clicked or when space key pressed.repeat, forever) and conditions (if...then...else).+, -), comparisons (>, <), and logic (and, or).Costumes: This is the visual editor. You can draw, paint, erase, or import images. Use the Vector Mode for scaling without losing quality, or Bitmap Mode for pixel art.
Sounds: Record, upload, or choose from Scratch’s built-in sound library. You can trim audio and apply effects like "fade in" or "robot." Creating a story in the Scratch Projects Editor
The “Get Started” tutorial teaches:
move 10 steps blockwhen green flag clicked blockplay sound meow blockAll in about 5–10 minutes.
This is the large white space on the right. Pro tip: You can right-click (or two-finger click on a Mac) in the Scripts Area and select "Clean Up" to automatically align your blocks into a neat grid.
wait 1 seconds — adds delay.repeat 10 … end — runs a sequence several times.Example: Make the cat glide side to side forever. Code: Contains 9 color-coded categories:
when green flag clicked
forever
glide 1 secs to x: 200 y: 0
glide 1 secs to x: -200 y: 0
You have completed the scratchmitedu-projects-editor-tutorial-getstarted foundation. Here is your roadmap for the next month:
wait 0.2 seconds loop).