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

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: