Score system finishing touches

Ok so I made a score system and now I want to add some finishing touches. I would like it to play a sound and have a label how up that says You Won! once you hit a certain number. any ideas? thanks.

1 Like

Okay so…
Send your global through a filter, and once that filter is true have it go through a switch that turns itself off, plays a sound, and sets the alpha of a label to 100
so, basically:

Global (out) β†’ (in) filter [greater than 99] (true (1)) β†’ (in (1)) (off (2)) switch [default on] (out (2,3)) β†’ (get (3)) number [100] (out (4))

Once β†’ (get) number [0] (out) β†’ (alpha (4)) label [You Won!]

If you’re confused, go to my topic on Standard Flowlab notation

1 Like

No idea if I did it right.

1 Like

You forgot to send the always into the IN of the switch :stuck_out_tongue:

1 Like

oops and thanks. finally i can move on to the next step!

1 Like