I need help with the Kills And Wipeouts so i can make the leaderboard into it. I have the leaderboard done and it worked:
game.Players.PlayerAdded:Connect(function(player) local stats = Instance.new("Folder", player) stats.Name = "leaderstats" local kills = Instance.new("IntValue", stats) kills.Name = "KOs" kills.Value = 0 local wipeouts = Instance.new("IntValue", stats) wipeouts.Name = "Wipeouts" wipeouts.Value = 0 end)