framework.module = require(moduleFolder:FindFirstChild(Item))
Im not sure if this is going to fix the problem, but FindFirstChild
needs a string, not the module itself, so I think if you change it to Item.Name
that may work. But im not sure.
framework.module = require(moduleFolder:FindFirstChild(Item))
Im not sure if this is going to fix the problem, but FindFirstChild
needs a string, not the module itself, so I think if you change it to Item.Name
that may work. But im not sure.