Advertisement
badgerscript

FNT2 AutoFarm

Feb 14th, 2020
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local rebirthGet = game.ReplicatedStorage.REs.Rebirth
  2. local autoFarm = true
  3. local noobGet = workspace.Collectibles
  4. local humanoidCF = game.Players.LocalPlayer.Character.HumanoidRootPart
  5.  
  6. function collectNoobs()
  7. for i,n in pairs(noobGet:GetChildren()) do
  8. wait(.1)
  9. humanoidCF.CFrame = CFrame.new(n.Main.Position)
  10. end
  11. rebirthGet:FireServer()
  12. end
  13.  
  14. while autoFarm == true do
  15. wait(.1)
  16. collectNoobs()
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement