1 | --Main Script |
2 | --\\ Nicknames |
3 | local Frame = script.Parent.PositioningFrame |
4 | local Tabs = require(script.Get) |
5 | --\\ Main Code |
6 | for _,v in pairs (Tabs.Get) do |
7 | print ( 'Tab name is:' ..v) |
8 | end |
1 | --Module |
2 | local Get = { } |
3 | local Find = script.Parent.Parent.PositioningFrame:GetChildren() |
4 | for i = 1 , #Find do |
5 | if Find [ i ] .ClassName = = 'TextButton' then |
6 | local add = table.insert(Get, Find [ i ] .Name) |
7 | end |
8 | end |
9 | return Get |
I'm not 100% used to how Modules work, so bare with me if I ask silly questions when you answer.
Most of what you wrote is valid except for one line, so I'm not gonna lecture you on modules. But I will say that when you require a module, the value it returns is passed directly to where it was required - much like returning a value through a function, and therein lies the source of your problem .
Line 6: You try to index Tabs
for table Get
, when Tabs represents Get. Instead of saying Tags.Get
, just pass Tabs as an argument to pairs in your for loop and you should be clear on that issue.
1 | -- Example |
2 | for i,v in pairs (Tabs) do |
3 | -- etc |
4 | end |