idk how to make it so when a variable equals 5 the backdrop switches

id: 749951

category: Help with Scripts

posts: 4

deck26 deck26 loading
Various options - easiest is probably just to have a script that waits until the variable is equal to 5 but if the value might miss 5 (eg you can score 2 points at once) better to check for not less than 5.
when green flag clicked
wait until <(varialbe) = (5)>
switch backdrop to [backdrop v]
BigNate469 BigNate469 loading

NamePending_ wrote:

when green flag clicked
wait until <(varialbe) = (5)>
switch backdrop to [backdrop v]
Or
when green flag clicked
wait until <[5] < (variable)>
switch backdrop to [something v]