- local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
- local w = library:CreateWindow("Lifting Titans")
- local b = w:CreateFolder("AutoFarm")
- local f = w:CreateFolder("Mix")
- local u = w:CreateFolder("Credits")
- b:Toggle("AutoClick",function(bool)
- shared.toggle = bool
- AutoClick = bool
- end)
- b:Toggle("AutoSell",function(bool)
- shared.toggle = bool
- AutoSell = bool
- end)
- b:Toggle("AutoEgg",function(bool)
- shared.toggle = bool
- AutoEgg = bool
- end)
- f:Dropdown("Copy Codes",{"UrsaIsTheBest","ExpiredCodeTest","Release","500Star"},true,function(Code)
- setclipboard(Code)
- end)
- f:Button("Tp Best WorldBoost",function()
- for i,v in pairs(game:GetService("Workspace").GymBarriers:GetChildren()) do
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.CFrame.Position + Vector3.new(0,0,0))
- end
- end)
- f:Button("Open Shop",function()
- game:GetService("Players").LocalPlayer.PlayerGui.MainUis.Menus.ShopSelectMenu.Visible = true
- end)
- f:Button("Equip All Pets",function()
- for i,v in pairs(game:GetService("Players").LocalPlayer.leaderstats.Pets:GetChildren()) do
- v.PetEquipped.Value = false
- game:GetService("ReplicatedStorage").BearSuite.Client.ComponentModule.ClientReplication:FireServer(game:GetService("Players").LocalPlayer.leaderstats.Pets[v.Name].PetEquipped)
- end
- end)
- u:Button("maxgat5#8395",function()
- setclipboard("maxgat5#8395")
- end)
- u:Button("Discrod Server",function()
- setclipboard("https://discord.gg/K4txdRSVfq")
- end)
- while wait() do
- if AutoEgg == true then
- game:GetService("ReplicatedStorage").Remotes.HatchEgg:InvokeServer("Dominus Egg",1)
- end
- if AutoClick == true then
- game:GetService("ReplicatedStorage").Remotes.OnLift:FireServer()
- end
- if AutoSell == true then
- game:GetService("ReplicatedStorage").Remotes.Sell:FireServer()
- end
- end