local Person = script.Parent.Leader.Value while true do wait(0.1) game.Players(Person).TeamColor = "Really Red" end
Here I am Making It So If a Players Name Is In a Value They Change To A Team. But it isn't working. I need Some Help
Try this:
local Person = script.Parent.Leader.Value local players = game:GetService("Players") while true do wait(0.1) players:FindFirstChild(Person).TeamColor = "Really Red" end