--How to access something in a table by its index in lua: local mytable = {"Hi", 6,"Bye"} --To access it: mytable[1] --or mytable[2] --or mytable[3]