The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Lifting Titans AutoFarm script pastebin roblox
By Lifting Titans on 2024-09-20 08:00 am | Syntax: LUA | Views: 22



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2. local w = library:CreateWindow("Lifting Titans")
  3. local b = w:CreateFolder("AutoFarm")
  4. local f = w:CreateFolder("Mix")
  5. local u = w:CreateFolder("Credits")
  6.  
  7. b:Toggle("AutoClick",function(bool)
  8.     shared.toggle = bool
  9.     AutoClick = bool
  10. end)
  11.  
  12. b:Toggle("AutoSell",function(bool)
  13.     shared.toggle = bool
  14.     AutoSell = bool
  15. end)
  16.  
  17. b:Toggle("AutoEgg",function(bool)
  18.     shared.toggle = bool
  19.     AutoEgg = bool
  20. end)
  21.  
  22. f:Dropdown("Copy Codes",{"UrsaIsTheBest","ExpiredCodeTest","Release","500Star"},true,function(Code)
  23.     setclipboard(Code)
  24. end)
  25.  
  26. f:Button("Tp Best WorldBoost",function()
  27.     for i,v in pairs(game:GetService("Workspace").GymBarriers:GetChildren()) do
  28.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(v.CFrame.Position + Vector3.new(0,0,0))
  29.     end
  30. end)
  31.  
  32. f:Button("Open Shop",function()
  33.     game:GetService("Players").LocalPlayer.PlayerGui.MainUis.Menus.ShopSelectMenu.Visible = true
  34. end)
  35.  
  36. f:Button("Equip All Pets",function()
  37.     for i,v in pairs(game:GetService("Players").LocalPlayer.leaderstats.Pets:GetChildren()) do
  38.         v.PetEquipped.Value = false
  39.         game:GetService("ReplicatedStorage").BearSuite.Client.ComponentModule.ClientReplication:FireServer(game:GetService("Players").LocalPlayer.leaderstats.Pets[v.Name].PetEquipped)
  40.     end
  41. end)
  42.  
  43. u:Button("maxgat5#8395",function()
  44.     setclipboard("maxgat5#8395")
  45. end)
  46.  
  47. u:Button("Discrod Server",function()
  48.     setclipboard("https://discord.gg/K4txdRSVfq")
  49. end)
  50.  
  51. while wait() do
  52.     if AutoEgg == true then
  53.         game:GetService("ReplicatedStorage").Remotes.HatchEgg:InvokeServer("Dominus Egg",1)
  54.     end
  55.    
  56.     if AutoClick == true then
  57.         game:GetService("ReplicatedStorage").Remotes.OnLift:FireServer()
  58.     end
  59.    
  60.     if AutoSell == true then
  61.         game:GetService("ReplicatedStorage").Remotes.Sell:FireServer()
  62.     end
  63. end