Answers for "lua pause"

Lua
6

wait function lua

function wait(seconds)
    local start = os.time()
    repeat until os.time() > start + seconds
end
--Exactly the same as the roblox one!
Posted by: Guest on November-07-2020
-1

how to wait in lua

wait() --parameter is seconds
Posted by: Guest on August-21-2020

Browse Popular Code Answers by Language