Because when players are going to be added to the table then it's all up to variables
You can do a for i,v loop on the table and check if v is equal to the string then remove it using i.
for i,v in pairs(table) do if v == "StringHere" then table.remove(table, i) end end