local Cabinet = {}
Cabinet.__index = Cabinet
type Cabinet = {
Owner: number
}
function Cabinet.new(PlayerId: number)
local self: Cabinet = {} --> warning: Table type { } is not compatible with type 'Cabinet' because the former is missing the field 'Owner'
setmetatable(self, Cabinet)
self.Owner = PlayerId
return self
end