Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a team KOs GUI??

Asked by 10 years ago
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??

1 answer

Log in to vote
0
Answered by
Kozero 120
10 years ago

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.

0
how would I do that, I'm not a pro at scripting NinjoOnline 1146 — 10y
0
You could use a Ko leader board from roblox. Kozero 120 — 10y
Ad

Answer this question