How to get rid of name tag

Get rid of the name tag on this npc



Cant figure out what is giving it the name tag

local playerService = game:GetService("Players")

playerService.PlayerAdded:Connect(function (plr)
	plr.CharacterAdded:Connect(function (char) 
		char.humanoid.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
	end)
end)

insert this script in to serverscriptservice, everytime a player respawns their username will display back again so this should redisable it

2 Likes

oh sorry i read this wrong, find the humanoid and try finding the property DisplayDistanceType

1 Like

Deleting the username in the parent model might solve this (where your username is written).

If this doesn’t help, you could also try looking in the Humanoid’s properties for DisplayName and clearing this as well.

You can also change the name of your NPC (the model) to a simple space, or change the maximum distance to see the name in the Humanoid.

You can set Humanoid.DisplayName To ” ” to hide that in case that you want to display the health bar but not the nametag

I just name the humanoid to nothing. Like “” that.