Help me im new to this and i dont know what im doing

Why the first switch works as intended (shows sprite when clicked and hides when clicked again) and the second is not? (second is always not showing anything when clicked)

Are the two objects that that are supposed to shown within the screen boundaries? Are they on another layer that’s not visible? Are they behind other objects?

Im guessing that the OKNO_TEST and New Sprite dont show and that is because
even if you check toggle switch 3 it wont show because toggle switch 2 would be uncheck resulting in those two assets to stay hidden. What you need to do is to add another condition that will be:

Toggle Switch 3 is checked                          Show OKNO_TEST
New Sprite is not visible                           Show New Sprite
OKNO_TEST is not visible

This will be for toggle Switch 3… And then you do the same thing with the others that also include those two assets , For example the toggle switch 2 and also the toggle switch 3 again but this time unchecked any other event that hides or shows these two assets. .When i say its not visible it means that means inverted visible condition like below:


When you want to Hide the object check if it IS visible first and if you want to show it the check if it IS NOT visible first.
Okay i hope you get all that and i hope you good luck with your project.
BYE
Edit: MrMen or anyone else i have a feeling i might be wrong so if i am please correct and help this guy/girl.

1 Like

oh ok i get it now i think thanks!