Advertisement
Honansik

Speed City Auto Collect Orbs Script

Feb 5th, 2023
783
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.81 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Trillionaire orbs", "DarkTheme")
  3. local Tab2 = Window:NewTab("Trillionaire City")
  4. local Section2 = Tab2:NewSection("Auto collect the Trillionaire orbs")
  5.  
  6.  
  7. Section2:NewToggle("Trillionaire orbs", "Teleports You To The white Orbs", function(state)
  8.     if state then
  9.         getgenv().Farming1 = true
  10.         while Farming1 == true do
  11.             if game:GetService("Workspace").TrillionaireCity.TrillionaireOrbs:FindFirstChild("Trillionaire") then
  12.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace").TrillionaireCity.TrillionaireOrbs.Trillionaire.Outside.Position)
  13.             end
  14.             wait()
  15.         end
  16.     else
  17.         getgenv().Farming1 = false
  18.     end
  19. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement