01 | print (script.Name.. ' loaded' ) |
02 | local players = game.Players |
03 |
04 | local surviving = { } |
05 |
06 | roundActive = false |
07 | intermission = true |
08 |
09 | game.Players.PlayerAdded:connect( function (player) |
10 | table.insert(surviving, player.Name) |
11 | print (player.Name.. ' has joined the game' ) |
12 | print (table.concat(surviving, ', ' )) |
13 | player.CharacterAdded:connect( function (character) |
14 | character.Humanoid.Died:connect( function () |
15 | table.remove(surviving, player.Name) |
The FindFirstChild
method does not work with arrays
(tables
).
1 | for key,value in pairs (surviving) do -- the pairs function is not necessary. |
2 | if player.Name = = value then |
3 | -- code |
4 | end |
5 | end |
The table.remove
function removes the value at the index given. To remove a specific value you can loop through the table.
1 | function removeValue(tab, val) |
2 | for o, n in pairs (tab) do |
3 | if val = = n then |
4 | table.remove(tab, o) |
5 | end |
6 | end |
7 | end |
1 | removeValue(surviving, player.Name) |