wait

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

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

Last updated