local fn = require(script.Parent.ModuleScript) -- <----
return {
Name = "Example",
Parameter = function() end,
BeforeAll = function() end,
AfterAll = function() end,
BeforeEach = function() end,
AfterEach = function() end,
Functions = {
["Test"] = function(_, value)
fn()
end
}
}