When creating 2 teams via script, only one is renamed

– Create home team

local Home_Team_Team = Instance.new(“Team”, Teams)
Home_Team_Team.Name = Home_Team.Name

local Home = Instance.new(“Decal”, Home_Team_Team)
Home.Name = “Home”

– Create away team

local Away_Team_Team = Instance.new(“Team”, Teams)
Away_Team_Team.Name = Away_Team.Name

I can create these teams without issue, I just have trouble renaming the away team. The home team is renamed without issue. The away team is named “Neutral” and is a gray color.

after the equal it expects a string value. something like: “Away team”

Found the issue, when I was creating the two teams I didn’t change the team colors and as a result one of the teams would not appear.