I'm trying to make a leader board only shows Points and KOs. How can I do that? Can somebody help me?
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)