Advertisement
Scriptorz5

Yard work sim

Jun 18th, 2018
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. --- V V V EDIT HERE V V V ---
  2.  
  3. local Tool = "Sickle" -- Enter your tool
  4. backpacksize = 100000 -- Enter your backpack Space
  5.  
  6. -------------------------------------------------
  7. local Event = game:GetService("ReplicatedStorage").Farm
  8. local Event = game:GetService("ReplicatedStorage").Farm
  9. local player = game.Players.LocalPlayer
  10. local sell = CFrame.new(Vector3.new(-65, 24, 118))
  11.  
  12.  
  13. while true do
  14.  
  15. if player.bagAmount.Value < backpacksize then
  16. for i, v in next, game:GetService("Workspace").Grass:GetChildren() do
  17. for i,y in pairs(v:GetChildren()) do
  18. if y.Name == "Grass" then
  19. if player.bagAmount.Value >= backpacksize then
  20. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = sell
  21. wait(80)
  22. end
  23. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = y.CFrame
  24. wait()
  25.  
  26. Event:FireServer(y, Tool)
  27. end
  28. end
  29. end
  30. end
  31. wait()
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement