How do i remove an instance from a table without using index

how do i remove an instance from a table without using index

You do need to know the index of the item before you can remove it, but this can be done simply as:

local index = table.find(tableName, tableItem)
table.remove(tableName, index)
2 Likes