The player with the most KO's at the end of the round needs to be displayed on a gui as "the MVP." The gui is done, but the scripting is more challenging than I thought and I have yet to find any helpful answers or links.
topko = 0 plrname = nil for i,v in pairs(game.Players:GetChildren()) do if v:FindFirstChild("leaderstats"):FindFirstChild("KOs").Value >= topko then topko = v:FindFirstChild("leaderstats"):FindFirstChild("KOs").Value plrname = v.Name end end Winner = plrname TextLabel.Text = "MVP "..Winner ImageLabel.Image = "http://www.roblox.com/Thumbs/Avatar.ashx?x=200&y=200&Format=Png&username="..Winner
If this helped please press the up button and press answered this question next to my name!