I want to scroll through all the items in a table. How would I do so?
Simplest way:
local table1 = {"test","test2") for i,v in pairs(table1) do print(v) end
Counting table elements:
local table1 = {"test","test2") print(#table1)