Advertisement
2AreYouMental110

bee empire tycoon

Oct 9th, 2022
2,091
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.59 KB | None | 0 0
  1. -- https://web.roblox.com/games/10951003026/Bee-Empire-Tycoon-UPDATE-1
  2.  
  3. getgenv().autodeposit = false
  4. getgenv().autobuy = false
  5. getgenv().autocollect = false
  6. getgenv().automerge = false
  7.  
  8. local selectedoption
  9. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  10. local Window = Library.CreateLib("bee empire tycoon", "Sentinel")
  11.  
  12.  
  13. local A = Window:NewTab("bee empire tycoon")
  14. local A1 = A:NewSection("bee empire tycoon")
  15.  
  16. A1:NewDropdown("placeholder", "placeholder", {"placeholer", "placeholder"}, function(value1)
  17.     selectedoption = value1
  18.     print(value1)
  19. end)
  20.  
  21. A1:NewToggle("auto deposit", "auto deposits", function(bool)
  22.     getgenv().autodeposit = bool
  23.     if bool then
  24.         autodep()
  25.     end
  26. end)
  27.  
  28. A1:NewToggle("auto buy", "auto buy", function(bool)
  29.     getgenv().autobuy = bool
  30.     if bool then
  31.         autobuy()
  32.     end
  33. end)
  34.  
  35. A1:NewToggle("auto collect", "auto collect", function(bool)
  36.     getgenv().autocollect = bool
  37.     if bool then
  38.         autocollect()
  39.     end
  40. end)
  41.  
  42. A1:NewToggle("auto merge", "auto merge", function(bool)
  43.     getgenv().automerge = bool
  44.     if bool then
  45.         automerge()
  46.     end
  47. end)
  48.  
  49. function autodep()
  50.     spawn(function()
  51.         while getgenv().autodeposit do
  52.             for i,v in pairs(game.Workspace.Tycoons:GetChildren()) do
  53.                 if v.ClassName == "Model" then
  54.                     v.Buttons["Deposite Honeys"].Button.CanCollide = false
  55.                     v.Buttons["Deposite Honeys"].Button.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  56.                     firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v.Buttons["Deposite Honeys"].Button)
  57.                 end
  58.             end
  59.             wait(1)
  60.         end
  61.     end)
  62. end
  63.  
  64. function autobuy()
  65.     spawn(function()
  66.         while getgenv().autobuy do
  67.             for i,v in pairs(game.Workspace.Tycoons:GetChildren()) do
  68.                 if v.ClassName == "Model" then
  69.                     for i,v in pairs(v.Buttons:GetChildren()) do
  70.                         if v.ClassName == "Model" and v.Button.Color == Color3.fromRGB(14, 173, 19) then
  71.                             v.Button.CanCollide = false
  72.                             v.Button.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  73.                             firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v.Button)
  74.                         end
  75.                     end
  76.                 end
  77.             end
  78.             wait(1)
  79.         end
  80.     end)
  81. end
  82.  
  83. function autocollect()
  84.     spawn(function()
  85.         while getgenv().autocollect do
  86.             for i,v in pairs(game.Workspace.HoneyFolder:GetChildren()) do
  87.                 if v.ClassName == "Part" then
  88.                     v.CanCollide = false
  89.                     v.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  90.                 end
  91.             end
  92.             wait(1)
  93.         end
  94.     end)
  95. end
  96.  
  97. function automerge()
  98.     spawn(function()
  99.         while getgenv().automerge do
  100.             for i,v in pairs(game.Workspace.Tycoons:GetChildren()) do
  101.                 if v.ClassName == "Model" then
  102.                     v.Buttons.Merge.Button.CanCollide = false
  103.                     v.Buttons.Merge.Button.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  104.                     firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,v.Buttons["Deposite Honeys"].Button)
  105.                 end
  106.             end
  107.             wait(1)
  108.         end
  109.     end)
  110. end
  111.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement