I was just wondering if it is possible to have an infinite wait time using the function
wait (x) --x amount of time
Can we write something like
wait (math.huge)
to get an infinite wait time?
I was just wondering if it is possible to have an infinite wait time using the function
wait (x) --x amount of time
Can we write something like
wait (math.huge)
to get an infinite wait time?
Post this in scripting support.
Why do you need an infinite amount of waiting?
In theory the wait(math.huge) should work, alternately you could use a loop with a wait inside.
You could use
repeat
until true == false