local function Wait(seconds)
local time = os.time()
repeat until os.time() > time + seconds
end
local wait_time = 10
for i = wait_time, 1, -1 do
wait_time = wait_time - 1
print(wait_time)
Wait(1)
end
To embed this project on your website, copy the following code and paste it into your website's HTML: