Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to i fix my starterplayer gui script?

Asked by 6 years ago

This question has been solved by the original poster.

I have a script in ServerScripts...

1game.Players.PlayerAdded:Connect(function(p)
2    p.CharacterAdded:Connect(function(c)
3        wait()
4        c.Parent = game.Lighting
5        p.PlayerGui.Health.Enabled = false
6        p.PlayerGui.CharChoose.Enabled = true
7    end)
8end)

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!

0
the c.Parent = game.Lighting works, but why wont gui thing work? i looked and its there, same name! CommanderCaubunsia 126 — 6y

2 answers

Log in to vote
0
Answered by
sheepposu 561 Moderation Voter
6 years ago
Edited 6 years ago

The need to use "WaitForChild"

01game.Players.PlayerAdded:Connect(function(p)
02    p.CharacterAdded:Connect(function(c)
03        wait()
04        c.Parent = game.Lighting
05        local gui = p:WaitForChild('PlayerGui')
06        local health = gui:WaitForChild('Health')
07        local charchoo = gui:WaitForChild('CharChoose')
08        helath.Enabled = false
09        charchoo.Enabled = true
10    end)
11end)
0
i understand but that cant be the case, remember? i said i tried using wait and it still did not work even though i checked and the guis werer there. whatever i figured it out anyway CommanderCaubunsia 126 — 6y
Ad
Log in to vote
0
Answered by 6 years ago

This case is Closed, i will not respond to anything.

Answer this question