Hi! So, im trying to make a system if player is on specific team, it gets an OverHeadUI with the team name.
The main idea its for pronouns, so if someone look at the player, it can see their pronouns n stuff. Whats the issue? I dont have any idea how to do it lol.
Theres currently 7 Teams, and you get them when you click an button in a UI.
game.Players.PlayerAdded:Connect(function(plr)
plr.Changed:Connect(function()
if plr.Team.Color == Brickcolor.new()--[[// He/Him Color or He/Them Color ]] then
--// Change the color and text of the overhead UI right here
end
end)
end)