How do i put myself on team owner?
Here's some code I wrote, I'm not sure if it will work:
a = game.Players:GetChildren() game.Players.PlayerAdded:connect(function() for i,v in pairs(a) do if v.Name == "groovydino" then v.TeamColor = BrickColor.new("Really Red") --Change really red to whatever teamcolor the "Owner" team is else v.TeamColor = BrickColor.new("Medium Stone Grey") --Default player teamcolor end end end)
If that doesn't work, let me know, but it should. Just drop that script into the Workspace and it should work.