bug with game

id: 751774

category: Help with Scripts

posts: 5

game: https://scratch.mit.edu/projects/993105075/
on the 2nd challenge, you have to repeat the blocks that are shown before you can start, but you can only click one before nothing is clickable anymore. why does this happen and how can i fix it
Ranger_07 Ranger_07 loading
I think the problem is that your “possible buttons” list is “for this sprite only”. That means that all the clones have a different list, and that list has a length of 1 for them? This causes them to stop checking for if they're pressed after the first button has been pressed.
Anyway, if you swap the “possible buttons” list for one that is FOR ALL SPRITES, it should work.
Marc92020 Marc92020 loading

Ranger_07 wrote:

(#2)
I think the problem is that your “possible buttons” list is “for this sprite only”. That means that all the clones have a different list, and that list has a length of 1 for them? This causes them to stop checking for if they're pressed after the first button has been pressed.
Anyway, if you swap the “possible buttons” list for one that is FOR ALL SPRITES, it should work.
i swear i set it to for all sprites
anyway imma try that and see if it works
Marc92020 Marc92020 loading

Ranger_07 wrote:

(#2)
I think the problem is that your “possible buttons” list is “for this sprite only”. That means that all the clones have a different list, and that list has a length of 1 for them? This causes them to stop checking for if they're pressed after the first button has been pressed.
Anyway, if you swap the “possible buttons” list for one that is FOR ALL SPRITES, it should work.
yep it works
thanks for the help