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
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