I’m attempting to use a configuration folder with my module script but what I have in the module script does not end up in the configuration value.
I have this script at the bottom of my configurations:
Settings.Configurations = { Test1 = “blah blah”, Test2 = true }
Then the configurations folder under the module script with one string value and one book value, any help?
if that is everything in your module then youre missing a critical part, it should look like this
local Settings = {} Settings.Configurations = { Test1 = "blah blah", Test2 = true } return Settings
then in the script youre requiring the module with, should look something like this
local settings = require(path to module) local configs = settings.Configurations --then you can access the content local firstData = configs.Test1 print(firstData)