Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Why does this script make my game crash? Should I add wait?

Asked by 6 years ago
if Point >= 1 then
     print("OhYay")
elseif Point < 1 then
    repeat until Point >= 1
   end

why does my game crash? should i add a wait after the repeat until point?

1 answer

Log in to vote
0
Answered by 6 years ago

use this:

repeat wait() until Point >= 1
0
ty RealRexTerm 21 — 6y
Ad

Answer this question