Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --- V V V EDIT HERE V V V ---
- local Tool = "Sickle" -- Enter your tool
- backpacksize = 100000 -- Enter your backpack Space
- -------------------------------------------------
- local Event = game:GetService("ReplicatedStorage").Farm
- local Event = game:GetService("ReplicatedStorage").Farm
- local player = game.Players.LocalPlayer
- local sell = CFrame.new(Vector3.new(-65, 24, 118))
- while true do
- if player.bagAmount.Value < backpacksize then
- for i, v in next, game:GetService("Workspace").Grass:GetChildren() do
- for i,y in pairs(v:GetChildren()) do
- if y.Name == "Grass" then
- if player.bagAmount.Value >= backpacksize then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = sell
- wait(80)
- end
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = y.CFrame
- wait()
- Event:FireServer(y, Tool)
- end
- end
- end
- end
- wait()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement