How to i fix my starterplayer gui script?
This question has been solved by the original poster.
I have a script in ServerScripts...
1 | game.Players.PlayerAdded:Connect( function (p) |
2 | p.CharacterAdded:Connect( function (c) |
4 | c.Parent = game.Lighting |
5 | p.PlayerGui.Health.Enabled = false |
6 | p.PlayerGui.CharChoose.Enabled = true |
it wont work, i even tried adding a wait(5) and that gives me time to look in the player's PlayerGui, and the screengui is THERE! but there is output error saying
CharChoose is not a valid member of PlayerGui
Please help!