I am new to scripting and I am building a game and i need nameplates removed.
Simple.
1 | function RemoveName(player) |
2 | player.NameDisplayDistance = 0 |
3 | player.HealthDisplayDistance = 0 |
4 | end |
5 |
6 | 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
1 | function Hide(player) |
2 | player.NameDisplayDistance = 0 |
3 | player.HealthDisplayDistance = 0 |
4 | end |
5 |
6 | Game.Players.PlayerAdded:connect(Hide) |