Custom name appear above a brick

What im trying to do is to change my username (kinda) i welded a brick over my head and how could i make letters appear over the brick? But I want the letters look like its a username. How would i do that?

You can achieve this by making use of BillboardGUIs. You can set its Adornee to the desired brick, or just parent it, even to your head!

set offset of a bill board gui like 1-4 studs, and make a script that the gui is = to your username or whatever you want

hey this is also a silly question, how do I make gui’s stop expanding if you scroll out?

1 Like

You should convert your GUI’s size from offset to scale to prevent that from happening.

1 Like

Don’t copy paste that, I’m just showing how it works, I DON’T recommend Instancing a Billboard and try to just handly make it, this script lack sizing so DON’T copy it just use it as a resource!

game.Players.PlayerAdded:Connect(function(Player)
	Player.CharacterAdded:Connect(function(Character)
		local BillboardGui = Instance.new("BillboardGui")
		local TextLable = Instance.new("TextLabel")

		BillboardGui.Parent = Character:FindFirstChild("Head")
		TextLable.Parent = BillboardGui

		TextLable.Text = "Owner"		
	end)
end)