1

https://scratch.mit.edu/projects/798882651

Wordle scratch code has a bug, whenever an input is given by the user the program prints 5 of the same sprite with the same costume regardless of input. The program should print all letters in user input as 5 seperate sprites with costumes matching their letter

https://www.youtube.com/watch?v=_OsCe1btRZo I tried following this tutorial however I get a different result despite copying the code exactly from what I can tell

2 Answers2

0

I think your problem might be that you don't have a script for when your sprite starts as a clone and the fact that your only sprite doesn't have any costumes, meaning that when you clone your sprite, it's going to be the exact same thing unless you add costumes and add a "when I start as a clone" script.

CrSb0001
  • 151
  • 1
  • 11
0

You have a block When I start as a clone where you set costume to blank. This is executed for EVERY clone you create, even from Answer check block.

I don't see why you need that When I start as a clone at all.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Vlad Feinstein
  • 10,960
  • 1
  • 12
  • 27