Bileinpoop

g

Oct 31st, 2024
10
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.29 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GhostDuckyy/Ui-Librarys/main/Gerad's/source.lua"))()
  2.  
  3. local Window = Library:CreateWindow('FluxHUB ') -- :CreateWindow(Title)
  4.  
  5. local Section = Window:Section('Open script') -- :Section(Title)
  6.  
  7. -- Label
  8. Section:Label('Made by Merchant_xy') -- :Label(Text)
  9.  
  10. -- Button
  11. Section:Button('AutoSteps', function()
  12.      getgenv().AutoSteps = true
  13.     while getgenv().AutoSteps == true do
  14.  
  15.     local args = {
  16.     [1] = "collectOrb",
  17.     [2] = "Orange Orb",
  18.     [3] = "City"
  19.   }
  20.   game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  21.   wait()
  22.     end
  23.   end)
  24.  
  25.  
  26. Section:Button('AutoGems', function()
  27.      getgenv().AutoGems = true
  28.     while getgenv().AutoGems == true do
  29.       local args = {
  30.       [1] = "collectOrb",
  31.       [2] = "Gem",
  32.       [3] = "City"
  33.     }
  34.     game:GetService("ReplicatedStorage").rEvents.orbEvent:FireServer(unpack(args))
  35.   wait()
  36.     end
  37.   end)
  38.  
  39.  
  40.  
  41. Section:Button('AutoRebirth', function()
  42.      getgenv().AutoRebirth = true
  43.     while getgenv().AutoRebirth == true do
  44.      local args = {
  45.     [1] = "rebirthRequest"
  46.    }
  47. game:GetService("ReplicatedStorage").rEvents.rebirthEvent:FireServer(unpack(args))
  48.     wait()
  49.     end
  50.   end)
  51.  
  52. Section:Label('') -- :Label(Text)
Add Comment
Please, Sign In to add comment