How do you create a Knockouts and Wipeouts Leaderboard? The old Script for it is no longer functional.
Server Script:
game.Players.PlayerAdded:connect(function(plr) --Activates when player is added local stats = Instance.new("Model")-- creates a model to hold stats. stats.Parent = plr --makes the model inside the plr that joined. stats.Name = "leaderstats" --Makes the model name "stats" local KO = Instance.new("IntValue") KO.Parent = stats KO.Name = "KO's" KO.Value = 0 -- Makes the value of KO's 0 when players first start the game local WO = Instance.new("IntValue") WO.Parent = stats WO.Name = "WO's" WO.Value = 0 end)