Just playing around with for i,v in pairs since its not the best thing I understand, why doesnt this print all the words in the table?
1 | table = { |
2 | "Me" , "Me2" , "AndMe" |
3 | } |
4 |
5 | for i,v in pairs (table()) do |
6 | print (i,v) |
7 | wait() |
8 | end |
Remove your parenthesis for table in pairs()
1 | for i,v in pairs (table) do |