setInterval
local Age = 1
setInterval(function()
Age = Age + 1
print("You are " .. Age .. " years old")
end, 5) -- every 5 seconds this will print the current AgeLast updated
local Age = 1
setInterval(function()
Age = Age + 1
print("You are " .. Age .. " years old")
end, 5) -- every 5 seconds this will print the current AgeLast updated