Hapus dari Tabel Lua

table.remove(tbl, index) -- Removes and shifts remaining elements
tbl[index] = nil -- Removes without shifting
Orion