billboardGui doesnt show when join

hey, my billboardGui wont work. tried doing watiforchild but didn’t work either. my script:

game.Players.PlayerAdded:Connect(function(player)
	game.ServerStorage:WaitForChild("Guest"):Clone().Parent = player.Character.Head
4 Likes

You need to add a
end)
At the end of your script.

3 Likes

You have to wait for the character to load in:

game.Players.PlayerAdded:Connect(function(player)
    player.CharacterAdded:Wait() --wait until the character is loaded
	game.ServerStorage:WaitForChild("Guest"):Clone().Parent = player.Character.Head

And yeah, where’s the end) in your function?

1 Like

the end) is there just got the script out.

1 Like

Output? (30/30/30/30 character)

Nothing shows up in the output, that is why I didn’t include it

1 Like
game.Players.PlayerAdded:Connect(function(PlayerAdded)
	PlayerAdded.CharacterAdded:Connect(function(CharacterAdded)
		game.ServerStorage:WaitForChild("Guest"):Clone().Parent = CharacterAdded.Head
	end)
end)

try this

1 Like

Perhaps it would be useful to also look at what the output logs say? It can point you in the right direction for fixing errors like that.

1 Like

Nothing comes up as I stated a few minutes ago.


also @seiyakido doesn’t work.

1 Like

So the problem must be the positioning of the Billboard

Can you send me a .rbxm from your billboard?

Actually uh where is the script located and is it a localscript or a regular script?

1 Like

localscript

Wym? @seiyakido

1 Like

oh you are supposed to put it in a ServerScript, LocalScript/Client don’t have access to ServerStorage

1 Like