| |
|
|
| 13 Jan 2013 04:16 PM |
Game.Players.PlayerAdded:connect(function(player) repeat wait() until player.Leaderstats.Wipeouts if player.Leaderstats.Wipeouts.Value == 11 then player.TeamColor = BrickColor.new("White") end end) |
|
|
| Report Abuse |
|
|
| |
|
|
| 13 Jan 2013 04:19 PM |
Ooops, wrong thing:
Game.Players.PlayerAdded:connect(function(player) repeat wait() until player.Leaderstats.Wipeouts player.Leaderstats.Wipeouts.Changed:connect(function(property) if player.Leaderstats.Wipeouts.Value == 11 then player.TeamColor = BrickColor.new("White") end end) end) |
|
|
| Report Abuse |
|
|
|
| 13 Jan 2013 04:32 PM |
| I tested it and it didn't work apparently... |
|
|
| Report Abuse |
|
|
| |
|
|
| 13 Jan 2013 04:34 PM |
player.Leaderstats.Wipeouts
That's probably the only problem you're getting, you need to make sure "Leaderstats" is present and "Wipeouts" is present. I can't do everything for you. |
|
|
| Report Abuse |
|
|
|
| 13 Jan 2013 05:02 PM |
player.leaderstats.Wipeouts
Most of the time, if you did not make your own leaderboard, it is called 'leaderstats' not 'Leaderstats'. If it still doesn't work, tell us what the output is.
[Output can be accessed by clicking View>Output] |
|
|
| Report Abuse |
|
|