wait

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

To view the console log, focus Stream Avatars, and press Alt+C, then type: Lua After hitting enter, a console logger will come up showing you the logs. Once it is open, you can close the command input by pressing Alt+C again.

You can close the console log by repeating this process.

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

Last updated