I asked ChatGPT to make a scratch game but is it good at coding? ChatGPT's sb3 file coming soon...
What ChatGPT cooked up: Step 1: Create Sprites Player Sprite (e.g., a cat, or draw your own) Falling Object Sprite (e.g., an apple or rock) Step 2: Player Controls Player Sprite (Cat) – Add this script: vbnet Copy Edit when green flag clicked go to x: 0 y: -140 forever if <key [right arrow] pressed?> then change x by 10 end if <key [left arrow] pressed?> then change x by -10 end end Step 3: Falling Objects Falling Object Sprite – Add this script: pgsql Copy Edit when green flag clicked forever go to x: (pick random -200 to 200) y: 180 repeat until <touching [Cat v]?> change y by -10 wait 0.05 seconds end if <touching [Cat v]?> then broadcast [Game Over v] stop [all v] end end Step 4: Game Over Message Stage – Add this script: css Copy Edit when I receive [Game Over v] say [Game Over!] for 2 seconds Step 5: Add a Score System Stage – Add this: vbnet Copy Edit when green flag clicked set [score v] to 0 forever wait 1 seconds change [score v] by 1 end If you put this together in Scratch, you’ll have a playable game where: You move left/right to dodge falling items. The game ends if you get hit. Your score goes up the longer you survive.