Horje
sleep function lua Code Example
sleep function lua
local clock = os.clock
function sleep(n)  -- seconds
  local t0 = clock()
  while clock() - t0 <= n do end
end
how to wait lua
wait(1)




10

Related
roblox on touch script Code Example roblox on touch script Code Example
lua loop through table Code Example lua loop through table Code Example
lua click detection Code Example lua click detection Code Example
roblox key pressed script Code Example roblox key pressed script Code Example
lua for each in table Code Example lua for each in table Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8