iSamJ
|
  |
| Joined: 21 Nov 2012 |
| Total Posts: 18370 |
|
|
| 24 Apr 2014 02:30 PM |
a = Instance.new("Team") a.Parent = Teams a.TeamColor = "Bright blue" a.Score = 1 |
|
|
| Report Abuse |
|
|
youssef04
|
  |
| Joined: 22 Jan 2011 |
| Total Posts: 1745 |
|
| |
|
iSamJ
|
  |
| Joined: 21 Nov 2012 |
| Total Posts: 18370 |
|
|
| 24 Apr 2014 02:35 PM |
| Hmm, i cant believe that i forgot that, but it still didn't work. |
|
|
| Report Abuse |
|
|
youssef04
|
  |
| Joined: 22 Jan 2011 |
| Total Posts: 1745 |
|
|
| 24 Apr 2014 02:38 PM |
a = Instance.new("Team", game.Teams) a.TeamColor = "Bright blue" a.Score = 1 |
|
|
| Report Abuse |
|
|
Kingmouli
|
  |
| Joined: 28 Sep 2012 |
| Total Posts: 1292 |
|
|
| 24 Apr 2014 03:19 PM |
Error is on this line a.TeamColor = "Bright blue" but I won't tell you what it is Check the output |
|
|
| Report Abuse |
|
|
iSamJ
|
  |
| Joined: 21 Nov 2012 |
| Total Posts: 18370 |
|
|
| 25 Apr 2014 03:50 PM |
| TeamColor.new("Bright blue") ? |
|
|
| Report Abuse |
|
|
| |
|
youssef04
|
  |
| Joined: 22 Jan 2011 |
| Total Posts: 1745 |
|
|
| 25 Apr 2014 04:32 PM |
@Project, do you know what you're doing? It's case sensitive, it's ment to be Bright Blue |
|
|
| Report Abuse |
|
|
iSamJ
|
  |
| Joined: 21 Nov 2012 |
| Total Posts: 18370 |
|
|
| 25 Apr 2014 04:33 PM |
| Bright Blue will not work because its called "Bright blue" |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2014 04:35 PM |
a = Instance.new("Team", game.Teams) a.Name = "Bright blue team" game.Teams[a.Name].TeamColor = BrickColor.new(23)
-- Colors are brickcolors, not teamcolors. |
|
|
| Report Abuse |
|
|
|
| 25 Apr 2014 04:36 PM |
a.TeamColor = BrickColor.new("Bright blue") a.Score = 1--not even sure this exists,gonna check the properties.. a.Parent = game:GetService("Teams")--in case teams is nil,which it is >_< |
|
|
| Report Abuse |
|
|