Advertisement
SirMeme

Auto Farm

Jul 23rd, 2018
6,484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. spawn(function()
  2. for i,folder in pairs(game.Workspace:GetChildren()) do
  3. if folder:FindFirstChild("NPC") and folder.ClassName == "Folder" then
  4. folder.Name = "NPC"
  5. end
  6. end
  7. end)
  8.  
  9.  
  10. spawn(function()
  11. wait(0.1)
  12. while wait() do
  13. pcall(function()
  14. for i,v in pairs(game.Workspace.NPC:GetChildren()) do
  15. while v.Humanoid.Health > 1 do
  16. wait()
  17. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.HumanoidRootPart.CFrame*CFrame.new(0, 0, 3)
  18. end
  19. end
  20. end)
  21. end
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement