Answers for "roblox lua script"

Lua
0

roblox lua scripts

local lowrange = 1
local maxrange = 10
local ranges = [lowrange, maxrange]

for number=1, maxrange do
   print(number)
   wait()
end
Posted by: Guest on September-11-2021
-1

lua roblox

local function testFunc()	-- Here, the built-in wait function is overwritten with a number	wait = 1	print(wait)end testFunc() -- This will now trigger a runtime errorwait(1)
Posted by: Guest on August-23-2021

Browse Popular Code Answers by Language