So i’m making a nuke event for my friend’s game but the GUI countdown have a little problem…
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