`local Booster = {}
Booster.__index = Booster`
function Booster.new(Type)
local self = {}
setmetatable(self, Booster)
self.booster = TMPFrame:Clone()
print(self.booster)
print(typeof(self.booster))
Booster:SetFrame(Type)
end
function Booster:SetFrame(Type)
if Type == "AutoSell" and NotClone == true then
NotClone = true
print(self.booster)
self.booster.Parent = script.Parent
self.booster.AutoText.Visible = true
self.booster.AUTOSELL.Visible = true
elseif Type == "AutoSoul" and NotClone == true then
print("AutoSoul")
NotClone = true
self.booster.Parent = script.Parent
self.booster.AutoText.Visible = true
self.booster.AUTOSOUL.Visible = true
end
end