it’s always stuck at “1 s left” I think i should have send a video but i took like so long to take this screenshot and i am lazy to open OBS so… if you wanna get a video just ask me lol
here’s the countdown code btw (it’s serversided):
local p = game.Players:GetChildren()
for i = 75, 1, -1 do
for i = 1, #p do
p[i].PlayerGui.NukeExplosionCountdown.Count.Text = i .. " s left"
end
wait(1)
end
the game is probably confused as to which ‘i’ you are using. try this:
local p = game.Players:GetChildren()
for i = 75, 1, -1 do
for a = 1, #p do
p[a].PlayerGui.NukeExplosionCountdown.Count.Text = i .. " s left"
end
wait(1)
end```