For the complete documentation index, see llms.txt. This page is also available as Markdown.

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