How can I disable my username in game?

I know there’s multiple posts about this topic but some are old and haven’t helped. I’m using the feature to test a game with 2 players at the same time. One of them is the spectator one and the other is just the “NPC” that I control. I basically want to record a short video, but I don’t want the display name to be in the way. Can anyone help me? If it’s a script, where do I put it? Thank you for your time!

Here’s what it shows.

Try this:

game.Players.PlayerAdded:Connect(function(Player)
  Player.CharacterAdded:Connect(function(Character)
     Character:WaitForChild("Humanoid").DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
   end)
end)

It worked, I appreciate your help!

1 Like