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 4 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?

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

1 answer

Log in to vote
2
Answered by 4 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