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