Every player has their own player model in workspace how do i remove the name above it
1 Like
If you want them off by default:
Put a script in “Starter Player/StarterCharacterScripts”
In that script put the following code
script.Parent.Humanoid.NameDisplayDistance = 0
This will set the name display distance to 0 making it invisible.
1 Like