hello iam learing OOP , i wrote a script and its printing nil
local module = {}
module.__index = module
function module.Init(gui)
-- assert(gui == "Instance","gui need to be a instance rip")
local t = setmetatable({},module)
t.TextBox = gui
return t
end
function module:Check()
print(self.TextBox)
end
return module