Strange, perhaps someone with more experience with the protocol can help you with that.
There are multiple ways you can access tables. You can use brackets (table['a']['aa']), but also periods(table.a.aa). If you want to loop through a table you can use this:
There are multiple ways you can access tables. You can use brackets (table['a']['aa']), but also periods(table.a.aa). If you want to loop through a table you can use this:
for Key, Value in pairs(table) do print(Key, Value) end