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?
table = { "Me", "Me2", "AndMe" } for i,v in pairs (table()) do print(i,v) wait() end
Remove your parenthesis for table in pairs()
for i,v in pairs (table) do