How would I do this???
1 | --I know that this is wrong |
2 | table.insert(Table, Value = "Value" ) |
The table.insert
function cannot setup dictionaries for you.
You can set the index like so:
1 | Table [ "name" ] = value; |
Or, like this :D
1 | Table.name = value; |