Is there a way to remove the players names, without having 50+ lines to code.
local player = game.Players.LocalPlayer while wait() do player.Character.Humanoid.NameDisplayDistance = 0 end
My attempt. Inside LocalScript in StarterPack
There's a property in the Humanoid named NameOcclusion.
local player = game.Players.LocalPlayer while wait() do player.Character.Humanoid.NameOcclusion = "NoOcclusion" end
Use displaydistancetype.
Humanoid.DisplayDistanceType="None"