How do I script a BillboardGui so that whenever people enter they receive it. I've tried the PlayerAdded event but I need to know this when I set it to its Adornee it has to be a specific person. For an example I would put Game.Workspace.shadowsonichedgehogx.Head, but I want it to be the person's head whenever they enter the server.
Playa = game.Players.PlayerAdded(player) local Workspace.ScreenGui.BillboardGui:Clone().Parent = player
This might work. In any case, the answer to your question on how to target a player who has just entered is to use the (player)
argument after PlayerAdded
.