Questions on Dictionaries

So I am trying to basically get all the items of a dictionary. What I want to get is basically a tuple of false x4. However when attempting to concatenate it it seems to return nil. Further proof can be found that this table is somehow empty by attempting to get its length, returning nil. Is this a type error? And if not how do I return a tuple of a dictionary?

ipairs only iterates through the array part of a table. Use pairs.

2 Likes