Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 📲 Grow a Garden - H4xScript Mobile Auto Farm V2 (2025)
- -- Fully mobile-compatible script. Includes auto collect/plant.
- local player = game.Players.LocalPlayer
- local garden = workspace:WaitForChild("GardenPlots")
- local rs = game:GetService("ReplicatedStorage")
- -- Main Mobile Loop
- local function mobileFarm()
- while true do
- for _, plot in ipairs(garden:GetChildren()) do
- if plot:FindFirstChild("Plant") then
- rs:FireServer("HarvestPlant", plot)
- wait(0.15)
- rs:FireServer("WaterPlant", plot)
- wait(0.15)
- rs:FireServer("PlantSeed", plot, "SunflowerSeed")
- wait(0.15)
- end
- end
- wait(2)
- end
- end
- task.spawn(mobileFarm)
- print("✅ H4xScript Mobile Auto Farm V2 Running")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement