Why won't my character's display name be hidden?

Yeah I would but I can only choose one unfortunately

1 Like

No choice other people sometimes they know on the scripts they are smart have brightness

i can only mark people as solutions if their stuff actually works. because if someone else comes to see this topic with the same issue i have it can help

Actually, if you work on Roblox studio disc creating tag name hidden

is english your first language cowboy_mythi

Not too much if I know English but little

I still had problems with that at one time. Maybe I did it wrong.
I used this in a script. Took me a bit to dig it up…

--ServerScript in ServerScriptService
local playerService = game:GetService("Players")
playerService.PlayerAdded:Connect(function (player)
	player.CharacterAdded:Connect(function (character) 
		local humanoid = character:WaitForChild("Humanoid") task.wait(0.33)
		humanoid.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
	end)
end)

Reference

It’s weird though because when I searched this issue on google and saw other devforum topics most people marked the solutions as “Set displaynamedistance to 0” or “Use a starterhumanoid and set the display name to nothing”. Never have seen display distance type solution before though.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.