Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

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)
Source by devforum.roblox.com #
 
PREVIOUS NEXT
Tagged: #team #roblox
ADD COMMENT
Topic
Name
6+7 =