Second Nametag appearing on the default one

Wouldn’t necessarily consider this a scripting issue but how would I get rid of the default player NameTag? Here’s what I mean:
image

Try this:

game.Players.PlayerAdded:connect(function(player)
    player.CharacterAdded:connect(function(character)
        character:WaitForChild("Humanoid").DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
    end)
end)
2 Likes