local player = game.Players.LocalPlayer script.Parent.Text = player.leaderstats.KOs.Value player.leaderstats.KOs.Changed:connect(function() script.Parent.Text = player.leaderstats.KOs.Value end)
How can I make this have team total stasts, so theres a gui that shows the whole teams KOs??
You would need a function where you insert a player's name in the table every time one joins and remove a player every time a player leaves.