Table.Insert Help

How would I go about’s inserting something like this to a table ["Test"] = false ?
How would I insert this into the bottom position of the table? Would I just leave it blank?

Dictionaries have no order. tableName.Test = false is the only thing you can do.

If you want to have an ordered dictionary-like-thing, you will instead have to make a table where every element is something like { key = "Test", value = false }.

Alright, so I can’t do what I’m trying to do?

What are you trying to do exactly?

You either don’t need order, or if you do, then you will need to make a table of key/value entries.

Ok, thankyou for all the help.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.