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

How would you get this to remove a string value from a table?

Asked by 9 years ago
01print(script.Name..' loaded')
02local players= game.Players
03 
04local surviving= { }
05 
06roundActive= false
07intermission= true
08 
09game.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)
View all 42 lines...

2 answers

Log in to vote
3
Answered by
woodengop 1134 Moderation Voter
9 years ago

The FindFirstChild method does not work with arrays(tables).

1for key,value in pairs(surviving) do -- the pairs function is not necessary.
2    if player.Name==value then
3        --  code
4    end
5end
Ad
Log in to vote
1
Answered by 9 years ago

The table.remove function removes the value at the index given. To remove a specific value you can loop through the table.

1function 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
7end
1removeValue(surviving, player.Name)

Answer this question