Answers for "how to make everyone on team see each other name roblox"

Lua
0

how to make everyone on team see each other name roblox

game.Players.PlayerAdded:connect(function(plr)
	plr.CharacterAdded:connect(function(char)
		wait(0.001)
		char:WaitForChild('Humanoid').NameOcclusion = Enum.NameOcclusion.EnemyOcclusion
		char:WaitForChild('Humanoid').HealthDisplayDistance = math.huge
		char:WaitForChild('Humanoid').NameDisplayDistance = math.huge
	end)
end)
Posted by: Guest on February-02-2021

Code answers related to "how to make everyone on team see each other name roblox"

Browse Popular Code Answers by Language