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
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
You need to add a
end)
At the end of your script.
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?
the end) is there just got the script out.
Output? (30/30/30/30 character)
Nothing shows up in the output, that is why I didn’t include it
game.Players.PlayerAdded:Connect(function(PlayerAdded)
PlayerAdded.CharacterAdded:Connect(function(CharacterAdded)
game.ServerStorage:WaitForChild("Guest"):Clone().Parent = CharacterAdded.Head
end)
end)
try this
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.
Nothing comes up as I stated a few minutes ago.
also @seiyakido doesn’t work.
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?
oh you are supposed to put it in a ServerScript, LocalScript/Client don’t have access to ServerStorage