Hey all,
How do I say the following: After scoring X, end current level and load next level?
Develop games in your browser. Powerful, performant & highly capable.
Event
Compare instance value
Score > X
action
go to layout "next level"
Thanks!
Do you know how to set a score target? Like: "Score X in X seconds?"
use every second to set a countdown of a global value with your desired time
sub event to the every second
compare 2 values
countdown <= 0
set text "Yay you scored X in X time"
Else
set text "you failed"
Thanks again!