Advertisement
Guest User

Untitled

a guest
May 14th, 2025
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2.  
  3. local Window = Library.CreateLib("Nope", "DarkTheme")
  4.  
  5. local Tab = Window:NewTab("Farm")
  6.  
  7. local BagNotFull = game.Players.LocalPlayer.Pollen.Value == 0
  8. local BagFull = game.Players.LocalPlayer.Pollen.Value == 5475000
  9. local IsAtHive = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame == game.Workspace.Hives:WaitForChild("Hive_4").Platform.Top.CFrame
  10. local NotCollectingTokens = game.workspace.Debris.Tokens:GetChildren() == 0
  11. local HiveLocation = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart == game.workspace.Hives:WaitForChild("Hive_4").hive.DownWhiteThing.CFrame
  12. local MushroomLocation = game:GetService("Players").LocalPlayer.Character.HumanoidRootPart == game.workspace.Fields:WaitForChild("Mushroom Field").FieldBox.CFrame
  13.  
  14. local Section = Tab:NewSection("Autofarm")
  15.  
  16. Section:NewToggle("Farm Mushroom", "Farm in Field", function(BagNotFull)
  17. while BagNotFull() do
  18. game.Players.LocalPlayer.Character:PivotTo(game.workspace.Fields:WaitForChild("Mushroom Field").FieldBox.CFrame)
  19. end
  20. end)
  21.  
  22. Section:NewToggle("Auto TP to Hive", "auto tp to hive", function(NotCollectingTokens)
  23. while NotCollectingTokens() do
  24. game.Players.LocalPlayer.Character:PivotTo(game.workspace.Hives:WaitForChild("Hive_4").Platform.Top.CFrame)
  25. end
  26. end)
  27. Section:NewToggle("Auto Tool", "auto uses tool", function(state)
  28. if state then
  29. while wait(1) do
  30. game:GetService("Players").LocalPlayer.Character:WaitForChild("Porcelain Hammer"):WaitForChild("ToolRemote"):FireServer()
  31. end
  32. else
  33. print("Toggle Off")
  34. end
  35. end)
  36.  
  37. Section:NewToggle("Auto Convert", "Converts for you. MUST HAVE AUTO TP TO HIVE ON!", function(BagFull)
  38. if BagFull then
  39. game.ReplicatedStorage.Remotes.MakeHoney:FireServer(true)
  40. else
  41. game.ReplicatedStorage.Remotes.MakeHoney:FireServer(false)
  42. print("Toggle Off")
  43. end
  44. end)
  45.  
  46. Section:NewToggle("Auto Collect Tokens", "collects tokens in field for you", function(state)
  47. if state then
  48. while wait(0.3) do
  49. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Debris.Tokens:WaitForChild("ritz15_alt1").Hitbox.CFrame
  50. end
  51. else
  52. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Fields:WaitForChild("Mushroom Field").FieldBox.CFrame
  53. print("Toggle Off")
  54. end
  55. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement