wait

API - pauses the script for x amount of seconds. (essentially a timer)

return function()
    wait(3.5); --3.5 seconds.
    log('hello world');
end

Last updated