Hello I keep getting this error i’m not sure why let me know if there is something wrong with the require line.
function Shack:getJob(job)
local newJob = getJobName(job)
print(newJob)
local JobModule = require(componentFolder:FindFirstChild(newJob))
local jobNew = JobModule.New(self)
jobNew:Init()
end
Are there any other objects sharing the name of the module? If you have for example fireball ModuleScript and fireball Part in the same folder, you need to rename one.