function Loading:Hide(player) -- similar logic end

return Loading

-- Advanced RC7 with Lazy Loading local RC7 = {} RC7.modules = {} setmetatable(RC7, { __index = function(table, key) -- Automatically require a module when you try to access it local modulePath = script:FindFirstChild(key) if modulePath and modulePath:IsA("ModuleScript") then local module = require(modulePath) table.modules[key] = module return module end return nil end })