How do I print whats inside of a table

You can just keep iteration until you get to the end:

for _, Table in pairs(Require) do
    for _, Item in pairs(Table) do
        print(Item) -- Prints the item in the second table
    end
end
1 Like