Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Time resets when I die. How to fix?

Asked by 3 years ago

I need this issue fixed ASAP along with other issues with this timer. Whenever I die or I reset my character, the timer resets too. How do I prevent this?

local daytextbox = script.Parent
local day = 01
daytextbox.Text = day
while true do
    wait(1)
    day = day + 1
    daytextbox.Text = tostring(day)
    if day == 30 then
        day = 01
    end
end
0
is it a local script FurryPapal 90 — 3y
0
No, It is a normal script ultragamerW 7 — 3y
0
Where is the script located? CandyWreckEpicness 115 — 3y
0
Try disabling ResetOnSpawn (i think its called that) or try disabling the gui fcvrs 22 — 3y

1 answer

Log in to vote
2
Answered by 3 years ago

I am certain this is a GUI. If I am wrong this answer won't work. Go over to the ScreenGui that the script is in (technically it is in a textlabel or something, go to the ScreenGui). Then make sure that "ResetOnSpawn" is off. That should fix your problem.

Ad

Answer this question