switch the 5 with whatever score that you want. And switch "say hello" with whatever blocks you want to use when the score is what you want it to be.
when green flag clicked
forever if (score = 5)
say "hello"
Paulmedwal
Offline
You may want to keep the forever loop from doing an infinite repeat:
forever if score > 4
say "you win!"
wait until score < 1
This will say "you win!" once, and not check the score again until something has reset it.
Offline
Try this
when flag clicked
wait until score = 5
say "Win!"
I think that would be the best way to do it.
Offline