I'm trying to make it so it tells the players name an i want it like this "Winners: UltraUnitMode, Guest666, ROBLOX" if you know what i mean, so far i can only do it one at a time so it goes like this "Winners: UltraUnitMode" waits a second "Winners: Guest666" so on, hence the wait. Also I'm not sure if tostring() is a good idea to make it do that? Idk so thats why im asking lol
01 | function LookForWinner() |
02 | local Players = game.Players:GetChildren() |
03 | for i = 1 , #Players do |
04 | if Players [ i ] :FindFirstChild( 'leaderstats' ) then |
05 | if Players [ i ] .leaderstats.KOs.Value > = 25 then |
06 | Message( 'Winners: ' ..Players [ i ] .Name) -- Sends into the function and changes the text for everyone |
07 | wait( 1 ) |
08 | end |
09 | end |
10 | end |
11 | end |
Since you're not dealing with a Table, you have to use string concatenation in a loop:
01 | function LookForWinner() |
02 | local winners = "" |
03 |
04 | for _, player in ipairs (game.Players:GetChildren()) do |
05 | if player:FindFirstChild( 'leaderstats' ) and player.leaderstats.KOs.Value > = 25 then |
06 | winners = winners .. (#winners > 0 and ", " or "" ) .. player.Name |
07 | end |
08 | end |
09 |
10 | Message( 'Winners: ' .. winners) |
11 | wait( 1 ) |
12 | end |