I am new to scripting and I am building a game and i need nameplates removed.
Simple.
function RemoveName(player) player.NameDisplayDistance = 0 player.HealthDisplayDistance = 0 end Game.Players.PlayerAdded:connect(RemoveName) -- This is to know that when a player joins, the function activates
I used PlayerAdded to show that when someone joins, this activates.
Have a gander at this page: http://wiki.roblox.com/index.php?title=Hiding_humanoid_names
function Hide(player) player.NameDisplayDistance = 0 player.HealthDisplayDistance = 0 end Game.Players.PlayerAdded:connect(Hide)