Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make the player's Humanoid hide their username above their head?

Asked by 10 years ago

I have tried so hard to make this happen, but none of my tries have been successful. Can you please help me with this problem?

1 answer

Log in to vote
0
Answered by 10 years ago

I think this will work

function onRespawn(character)
character.Humanoid.NameOcclusion = Enum.NameOcclusion.OccludeAll
end 

local function onPlayerEntered(newPlayer)
  newPlayer.CharacterAdded:connect(onRespawn)
end 
game.Players.PlayerAdded:connect(onPlayerEntered)
0
Thanks! You really helped ;) Luigi7381 25 — 10y
Ad

Answer this question