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?

1 Like

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.

1 Like

You could use

repeat
until true == false
2 Likes