Wait

number Wait(number ticks)

This waits (halts the game) for the specified number of ticks. Since the interpreter is on 60Hz beats, a Wait(60) is equivilant to one second. It returns the time passed between the end of the last Wait() call, and the current one.

Example
Wait(120) // Waits for two seconds

See Also: GetTime