of     1   

InsuranceFrod
#140569769Thursday, July 17, 2014 12:10 AM GMT

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!
DrChowderr
#140570391Thursday, July 17, 2014 12:17 AM GMT

3 leader boards, or 3 different columns for the leader boards ?
InsuranceFrod
#140570586Thursday, July 17, 2014 12:20 AM GMT

Columns
ashispro
#140570759Thursday, July 17, 2014 12:22 AM GMT

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)

    of     1