|
| 16 Jul 2014 07:10 PM |
| I am needing a script with multiple leaderboards. I can put a single leader board in my game just fine, but I need 3 in the game. Please help! |
|
|
| Report Abuse |
|
|
|
| 16 Jul 2014 07:17 PM |
| 3 leader boards, or 3 different columns for the leader boards ? |
|
|
| Report Abuse |
|
|
| |
|
ashispro
|
  |
| Joined: 14 Sep 2008 |
| Total Posts: 452 |
|
|
| 16 Jul 2014 07:22 PM |
names = {"money", "swag", "yolo"} game.Players.PlayerAdded:connect(function(a) lol = Instance.new("IntValue", a) lol.Name = "leaderstats" for i = 1, #names do x = Instance.new("IntValue", lol) x.Parent = lol x.Name = names[i] end end) |
|
|
| Report Abuse |
|
|