Advertisement
Karap

Ro fruit open src

Dec 11th, 2023
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3. local Window = OrionLib:MakeWindow({Name = "Ro Fruit", HidePremium = false, SaveConfig = false, ConfigFolder = "k"})
  4.  
  5. local Tab = Window:MakeTab({
  6. Name = "Auto Farm",
  7. Icon = "rbxassetid://4483345998",
  8. PremiumOnly = false
  9. })
  10.  
  11. Tab:AddToggle({
  12. Name = "Pirate [Lv.1]",
  13. Default = false,
  14. Callback = function(Value)
  15. _G.AutoFarm = true
  16. while _G.AutoFarm do wait()
  17. pcall(function()
  18. for i,v in pairs(game.workspace.Mob:GetDescendants()) do
  19. if v.Name == "Pirate [Lv.1]" then
  20. if v.Humanoid.Health >= 0 then
  21. repeat task.wait()
  22. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,3)
  23. until _G.AutoFarm == false or v.Humanoid.Health <= 0
  24. end
  25. end
  26. end
  27. end)
  28. end
  29. end
  30. })
  31.  
  32. Tab:AddToggle({
  33. Name = "Buggy [Lv.20]",
  34. Default = false,
  35. Callback = function(Value)
  36. _G.AutoFarm = Value
  37. while _G.AutoFarm do wait()
  38. pcall(function()
  39. for i,v in pairs(game.workspace.Mob:GetDescendants()) do
  40. if v.Name == "Buggy [Lv.20]" then
  41. if v.Humanoid.Health >= 0 then
  42. repeat task.wait()
  43. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame * CFrame.new(0,0,3)
  44. until _G.AutoFarm == false or v.Humanoid.Health <= 0
  45. end
  46. end
  47. end
  48. end)
  49. end
  50. end
  51. })
  52. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement