This post is exactly what the title conveys. Am I able to put multiple dictionaries into one module script?
1 Like
Yes, something like this would work:
local module = {
Dictionary1 = {
FirstValue = 1,
SecondValue = 2
},
Dictionary2 = {
FirstValue = 1,
SecondValue = 2
},
Dictionary3 = {
FirstValue = 1,
SecondValue = 2
}
}
return module