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

BillboardGui won't insert into player?

Asked by
yoshi8080 445 Moderation Voter
9 years ago

I wanted the player to have a billboardgui into the player when they join. I can't seem to put one in

01function name(player)
02local p = player
03local head = p.Character:WaitForChild("Head")
04local n = Instance.new("BillboardGui",head)
05local text = Instance.new("TextLabel",n)
06n.Size = UDim2.new(10,0,1,0)
07n.StudsOffset = Vector3.new(0,4,0)
08n.Name = "Display"
09text.Name = "Output"
10text.Size = UDim2.new(1,0,2,0)
11text.BackgroundTransparency = 1
12text.Text = p.Name
13text.TextStrokeTransparency = 0
14text.TextTransparency = 0
15text.TextColor3 = Color3.new(255,255,255)
16text.TextStrokeColor3 = Color3.new(0,0,0)
17end
18game.Players.ChildAdded:connect(name)

1 answer

Log in to vote
0
Answered by 9 years ago

Okay, your problem was Character was returning nil. Unfortunately, I couldn't find a way to make it work. Instead I simply made a value that finds the characters name in workspace.

Code:

01local playername
02 
03game:GetService("Players").PlayerAdded:connect(function(player)
04playername = player.Name
05local head = game.workspace:WaitForChild(playername):WaitForChild("Head")
06local n = Instance.new("BillboardGui", head)
07local text = Instance.new("TextLabel", n)
08n.Size = UDim2.new(10,0,1,0)
09n.StudsOffset = Vector3.new(0,4,0)
10n.Name = "Display"
11text.Name = "Output"
12text.Size = UDim2.new(1,0,2,0)
13text.BackgroundTransparency = 1
14text.Text = player.Name
15text.TextStrokeTransparency = 0
16text.TextTransparency = 0
17text.TextColor3 = Color3.new(255,255,255)
18text.TextStrokeColor3 = Color3.new(0,0,0)
19end)

This works just as well, except it adds 1 line of code to it.

0
Doesn't work... .3. yoshi8080 445 — 9y
0
Put it in a normal script that's in Workspace. User#9949 0 — 9y
Ad

Answer this question