There Are 2 Types of Tables
Lists
1 | local listTable = { "a" , "b" , "c" } |
Now this is a regular table that holds these 3 values as Strings.
If we wanted a certain value from this table, we would have to Index it with [ ]
For Example, if we wanted to get b from this table we would do...
The result of this would print b in the output because we are indexing or getting the second value that is in the table.
We can also do this with for loops, like so...
1 | for i = 1 , #listTable, 1 do |
This will print all the values in the table because we are starting at 1, to the number of items in the table, which is 3, by the increment of 1. So, the result of this will print a b c
.
This is just doing the same thing three times, just simpler...
This is a bad habit and inefficient, it would be better to do a for loop
.
Another cool thing you can do with indexes is doing these for children of an object!
local items = game:GetService("Workspace"):GetChildren()
This will print the name of all the children inside of Workspace, since we are using the same thing we did for the listTable
.
Dictionaries
Now dictionaries are like lists, just with subtables inside of the values.
01 | local newDictionary = { |
03 | [ "Green" ] = { 0 , 255 , 0 } , |
10 | [ "White" ] = { 255 , 255 , 255 } |
This is just a table inside of a table holding multiple values of tables!
Dictionaries have unlimited possibilities, especially when you encounter metatables!
So, if you wanted to get the value of Red you would have to index the dictionary with [ ]
...
1 | local redDirectory = newDictionary [ "Value1" ] [ "Red" ] -// This will return the table, so we'll have to index the table that the value holds |
Most of the things you do with listing tables, you can do with dictionary tables!
Possibilities are endless!
Hope this helped! Feel free to select this as an answer if this helped you!