Hi
I have a normal game script in the workspace that changes gui's visible/non visible status. It works for one player only, the other players just have no GUI on their screen. I want them to show up for every player. Heres a snippet of my code:
for i,v in pairs(game.Players:GetPlayers()) do v.PlayerGui.Choosabel.BackgroundFrame.Visible = true wait(10) v.PlayerGui.Choosabel.BackgroundFrame.Visible = false end
Maybe you could try this:
game.Players.PlayerAdded:connect(function(Player) Player.PlayerGui.Choosabel.BackgroundFrame.Visible = true wait(10) Player.PlayerGui.Choosabel.BackgroundFrame.Visible = false end)
Pls vote if it works!!!
Locked by evaera
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?