Advertisement
Guest User

BOOGA BOOGA AUTOFARM

a guest
Nov 20th, 2019
3,928
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. 1. First you need equip your tools and execute this script(fast swing):
  2. local t=tick()
  3. getrenv().tick=function()t=t+100 return t end
  4.  
  5.  
  6. 2. after execute that script execute the auto farm:
  7. local Events = game:GetService('ReplicatedStorage').Events
  8. local Player = game:GetService('Players').LocalPlayer
  9. local char = Player.Character
  10.  
  11. while wait() do
  12. for i,v in pairs(workspace["Critters"]:GetChildren()) do
  13. if v.Name == "Banto" or v.Name == "Bantae" or v.Name == "Lil Banto" or v.Name == "Sand Mammoth" or v.Name == "Snow Mammoth" then
  14. wait(0.45)
  15. v.HumanoidRootPart.CanCollide = false
  16. char.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame
  17. wait(0.2)
  18. Events.SwingTool:FireServer(tick(),{v.HumanoidRootPart})
  19. end
  20. end
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement