insert a value into a table in lua code example
Example 1: lua add table to value
table.insert(table, position:num, value:any)
Example 2: lua insert table into table
table.insert(tabletoaddto, pos:num, tabletoinsert)
table.insert(table, position:num, value:any)
table.insert(tabletoaddto, pos:num, tabletoinsert)