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

How Do I Make a Name appear Over a Part?

Asked by 7 years ago

A name like the name you would see above a player's head except over a Part

2 answers

Log in to vote
0
Answered by 7 years ago

Make a part into a model, change the part's name to "Head", insert a humanoid into the model and then rename the model to whatever you want the text to say. If you don't want the green bar to be visible, change the MaxHealth to 0.

Ad
Log in to vote
0
Answered by
TheePBHST 154
7 years ago
Edited 7 years ago

If you were to do this in a script, it would be like this

local Part = Instance.new("Part")
local Head = Instance.new("Humanoid")

Part.Parent = game.Workspace
wait(2) -- Give it some time or else "Head" won't go in "Part"
Head.Parent = workspace.Part

If you were to do this is studios

First, Hover over the Workspace and Right Click. Part1

Next, click and open Insert Object Part2

Then, click Humanoid and Part.

After that, move the Humanoid to the Part.

If you want to change the Part's health to normal/god then go to Humanoid > MaxHealth and change it to 0 or spam 9 until you get inf. Also, change the Health to the MaxHealth's value.

Answer this question