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

HOW WHULD I ADD A CUSTOM NAME GIVER THROUGH BILLBOARD GUI AS YOUR NAME? [closed]

Asked by 9 years ago

game.Players.PlayerAdded:connect(function(player)

player.CharacterAdded:connect(function(character)

local hc = character:WaitForChild("Head"):Clone()

hc.Name = "FakeHead"

hc.Parent = character

local w = Instance.new("Weld")

w.Part0 = character.Head

w.Part1 = hc

w.Parent = character.Head

character.Head.Transparency = 1

end)

end)

1
Just saying, the caps in all of your questions are far from enjoyable. Please. KNOCK IT OFF. RedCombee 585 — 9y
0
Please read this before posting: https://scriptinghelpers.org/help/how-post-good-questions-answers Perci1 4988 — 9y

Closed as Not Constructive by FearMeIAmLag, Spongocardo, and TheeDeathCaster

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
4
Answered by 9 years ago

Please put your code in lua. If you do not know how to, simply click the blue bubble and add your code in the lines.

Ad