http://wiki.roblox.com/index.php?title=API:Class/Team/Score
This is deprecated, and I'd like to display the total amount of a team's kills on a GUI, so I'm all ears.
If you want to get the sum of the kills of every player on a certain team, you can add the number of kills of every player on a certain team together.
function GetKills(teamcolor) local kills=0 for _,v in pairs(game.Players:GetPlayers())do if v.TeamColor==teamcolor then local l=v:FindFirstChild("leaderstats") if l then local k=l:FindFirstChild("Kills") if k then kills=kills+k.Value end end end end return kills end