I need help with removing a player from a table for a round
Here is the link to the post if you want to know
You can use table.find to find the index, and table.remove to remove the element at the index.
local playerTable = {}
table.remove(playerTable, table.find(playerTable, player))
1 Like