duytq114

Untitled

Sep 2nd, 2022 (edited)
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.12 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/vozoid/ui-backups/main/uwuware-v1.lua"))()
  2. local client = game:GetService("Players").LocalPlayer
  3. local infarm = false
  4. local cancelled = false
  5. local function farm()
  6. infarm = true
  7. --// Services
  8. local players = game:GetService("Players")
  9. --// Workspace
  10. local stages = workspace:WaitForChild("BoatStages"):WaitForChild("NormalStages")
  11. local penguin, gold = workspace:WaitForChild("ChangeCharacter"), workspace:WaitForChild("ClaimRiverResultsGold")
  12. --// Other
  13. local client = players.LocalPlayer
  14. --// Main
  15. ---------
  16. _G.Busy = true
  17. while _G.Busy do
  18. local bodyVelocity = Instance.new("BodyVelocity")
  19. bodyVelocity.Velocity = Vector3.new(0, -4, 0)
  20. bodyVelocity.Parent = client.Character.HumanoidRootPart
  21. for i = 1, 9 do
  22. if not client.Character or not client.Character:FindFirstChild("Humanoid") then
  23. repeat wait() until client.Character and client.Character:FindFirstChild("Humanoid")
  24. end
  25. client.Character.HumanoidRootPart.CFrame = stages["CaveStage"..i].DarknessPart.CFrame wait(0.1)
  26. if not _G.Busy then
  27. client.Character.Humanoid.Health = 0
  28. exit(0)
  29. end
  30. if i == 1 then
  31. wait(4)
  32. else
  33. wait(2)
  34. end
  35. gold:FireServer()
  36. end
  37. penguin:FireServer("PenguinCharacter")
  38. client.Character:Remove()
  39. repeat wait()
  40. until client.Character and client.Character:FindFirstChild("HumanoidRootPart")
  41. end
  42. end
  43. local main = library:CreateWindow("Made By bruhh#2158")
  44. main:AddToggle({text = "Autofarm", flag = "autofarm", callback = function(toggled)
  45. cancelled = not toggled
  46. if toggled then
  47. if not infarm then
  48. farm()
  49. end
  50. end
  51. end})
  52. main:AddToggle({text = "Anti Afk", flag = "stopfarm", callback = function(toggled)
  53. local vu = game:GetService("VirtualUser")
  54. game:GetService("Players").LocalPlayer.Idled:connect(function()
  55. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  56. wait(1)
  57. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  58. end)
  59. end})
  60. main:AddButton({text = "Stop Farm", flag = "stopfarm", callback = function(toggled)
  61. _G.Busy = false
  62. end})
  63. library:Init()
Advertisement
Add Comment
Please, Sign In to add comment