Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How Do I Create A Leader Board With Points And KOs Only?

Asked by
ImfaoXD 158
8 years ago

I'm trying to make a leader board only shows Points and KOs. How can I do that? Can somebody help me?

2 answers

Log in to vote
0
Answered by 8 years ago

Video Hope this helps

Ad
Log in to vote
0
Answered by 8 years ago

Here's the script put. Insert it in Workspace.

game.PlayerAdded:connect(function(Player)

local leaderstats = Instance.new('IntValue')
leaderstats.Name = 'leaderstats'
leaderstats.Parent = Player

local Points = Instance.new('IntValue')
Points.Name = 'Points'
Points.Parent = leaderstats

local Ko = Instance.new('IntValue')
Ko.Name = 'KO's'
Ko.Parent = leaderstats

end)

Answer this question