what you basically do is avoid the apples, not collect them that's it I used chatgpt to make the game (i'm not lazy i'm just testing how ai makes scratch games) the ai still sucks making code, theres no "set size to" or "change costume to" blocks so it looks weird
comment your score in the comments, you don't have to note: this project was originally made for the SDS but it doesn't match the genre, that studio is "Power Up" (that studio is about robots) the chat with me and the ai: me: HEY CHATGPT MAKE ME A SCRATCH PROJECTS CODE NO IDEAS chatgpt: Alright—no ideas is actually the best starting point. Here’s a fun Scratch project you can build right away: a **“Dodge the Falling Objects” game**. It’s simple, but you can expand it a lot. --- ## Game Concept You control a character at the bottom of the screen. Objects fall from the top. Dodge them to survive and score points. --- ## Step 1: Player Sprite Code Create a player sprite (like a cat or square). ``` when green flag clicked go to x: 0 y: -150 forever if <key [left arrow] pressed?> then change x by -7 end if <key [right arrow] pressed?> then change x by 7 end end ``` --- ## Step 2: Falling Object Code Create another sprite (like a rock, pizza, or random object). ``` when green flag clicked forever go to x: (pick random -200 to 200) y: 180 repeat until <touching [edge v] or touching [Player v]> change y by -5 end if <touching [Player v]> then broadcast [game over v] end end ``` --- ## Step 3: Score System Make a variable called `Score`. **Add this to the falling object:** ``` if <touching [edge v]> then change [Score v] by 1 end ``` **Reset score:** ``` when green flag clicked set [Score v] to 0 ``` --- ## Step 4: Game Over On the player sprite: ``` when I receive [game over v] say [Game Over!] for 2 seconds stop [all v] ``` --- ## Step 5: Optional Cool Stuff * Add sound when hit * Increase speed over time * Add multiple falling objects (duplicate sprite) * Add a start screen --- If you want, I can: * Turn this into a **platformer instead** * Make a **clicker game** * Or give you a **super advanced Scratch game with levels + boss fight** Just tell me