athoi21

Auto Coin & Chi Farm

Dec 13th, 2019
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. _G.AutoFarm = true --False to stop Auto Farm
  2. while _G.AutoFarm == true do wait()
  3. local plr = game.Players.LocalPlayer
  4. for i,v in pairs(game:GetService("Workspace").spawnedCoins.Valley:GetChildren()) do
  5. if v and plr.Character:FindFirstChild("HumanoidRootPart") and v:IsA("Part") then
  6. wait(0.2)
  7. plr.Character.HumanoidRootPart.CFrame = v.CFrame * CFrame.new(0,1,0)
  8. end
  9. end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment