Advertisement
Woof_bot_3000

Flunkville autofarm

Oct 15th, 2019
366
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 KB | None | 0 0
  1. local Player = game:GetService("Players").LocalPlayer
  2. local Mouse = Player:GetMouse()
  3.  
  4. wait(1)
  5.  
  6. local function autoDoStuff()
  7. if tonumber(Player.PlayerGui.Rebirth.Main.Middle.Progress.Amount.Text:gsub(",", ""):split(" ")[1]) >= tonumber(Player.PlayerGui.Rebirth.Main.Middle.Progress.Amount.Text:gsub(",", ""):split(" ")[3]) then
  8. local i = 1
  9. repeat
  10. i = i + 1
  11. mousemoverel((Player.PlayerGui.Side.Buttons.rebirth.TextLabel.AbsolutePosition.X - Mouse.X) / 2, (Player.PlayerGui.Side.Buttons.rebirth.TextLabel.AbsolutePosition.Y - Mouse.Y) / 2)
  12. wait()
  13. until i > 20
  14. wait(0.1)
  15. mouse1click()
  16. wait(0.1)
  17. i = 1
  18. repeat
  19. i = i + 1
  20. mousemoverel((Player.PlayerGui.Rebirth.Main.Middle.Confirm.Title.AbsolutePosition.X - Mouse.X) / 2 + 2, (Player.PlayerGui.Rebirth.Main.Middle.Confirm.Title.AbsolutePosition.Y - Mouse.Y) / 2)
  21. wait()
  22. until i > 20
  23. wait(0.1)
  24. mouse1click()
  25. wait(0.1)
  26. i = 1
  27. repeat
  28. i = i + 1
  29. mousemoverel((Player.PlayerGui.Side.Buttons.rebirth.TextLabel.AbsolutePosition.X - Mouse.X) / 2, (Player.PlayerGui.Side.Buttons.rebirth.TextLabel.AbsolutePosition.Y - Mouse.Y) / 2)
  30. wait()
  31. until i > 20
  32. wait(0.1)
  33. mouse1click()
  34. end
  35. if Player.Character.HumanoidRootPart.Position.Y < 150 then
  36. wait(9)
  37. for i = 1, 20 do
  38. Player.Character.HumanoidRootPart.CFrame = Player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 10, 0)
  39. end
  40. wait(3)
  41. Player.Character:FindFirstChildOfClass("Humanoid").Health = 0
  42. end
  43. end
  44.  
  45. Player.CharacterAdded:Connect(function()
  46. wait(2)
  47. autoDoStuff()
  48. end)
  49.  
  50. autoDoStuff()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement