Is there a way to do this? I'm trying to make a custom name tag.
There are two properties of Player that you may find useful:
NameDisplayDistance
: http://wiki.roblox.com/index.php?title=API:Class/Player/NameDisplayDistance
HealthDisplayDistance
: http://wiki.roblox.com/index.php?title=API:Class/Player/HealthDisplayDistance
Using this in RbxLua, we can do:
game.Players.PlayerAdded:connect(function(p) p.HealthDisplayDistance = 0 p.NameDisplayDistance = 0 end)
Source:
http://wiki.roblox.com/index.php?title=Hiding_humanoid_names