lua pause code example
Example: lua wait function
local function wait(seconds)
local time = seconds or 1
local start = os.time()
repeat until os.time() == start + time
end
local function wait(seconds)
local time = seconds or 1
local start = os.time()
repeat until os.time() == start + time
end