local CurrectTime = nil
local FullTime = 0
local function startTimer(Time: number, call: any?)
FullTime = Time
spawn(function()
for i=Time, 0, -1 do
CurrectTime = i
--print(i)
if i==0 then
if typeof(call) == 'function' then
call()
end
end
task.wait(1)
end
end)
end