local t = {
"StringTest",
10,
5,
true,
"Another string"
}
local function RandomMath(x1, x2)
local rand_num = math.random(x1, x2)
return rand_num
end
local function wait(seconds)
local s = os.time()
repeat until os.time() > s + seconds
end
while true do
--wait(2)
table.insert(t, "bing bong")
for i, v in pairs(t) do
print("V: " .. tostring(v) .. ", I: " .. i .. "\n")
end
end
To embed this project on your website, copy the following code and paste it into your website's HTML: