Im making a countdown gui, but it only shows the scripts effects on one gui, any way to make it go on all of the PLayerGuis?
You would need to do a for loop to get all the player guis.
for i,v in pairs(game.Players:GetPlayers()) do --Or GetChildren() not too sure lmao if v then v.PlayerGui.GuiName.TextThing.Text = "Countdown" wait() end end
Basically, v is the player.