Advertisement
satyajitsrichandan

📲 H4xScript Mobile Auto Farm V2

Jun 24th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. -- 📲 Grow a Garden - H4xScript Mobile Auto Farm V2 (2025)
  2. -- Fully mobile-compatible script. Includes auto collect/plant.
  3.  
  4. local player = game.Players.LocalPlayer
  5. local garden = workspace:WaitForChild("GardenPlots")
  6. local rs = game:GetService("ReplicatedStorage")
  7.  
  8. -- Main Mobile Loop
  9. local function mobileFarm()
  10. while true do
  11. for _, plot in ipairs(garden:GetChildren()) do
  12. if plot:FindFirstChild("Plant") then
  13. rs:FireServer("HarvestPlant", plot)
  14. wait(0.15)
  15. rs:FireServer("WaterPlant", plot)
  16. wait(0.15)
  17. rs:FireServer("PlantSeed", plot, "SunflowerSeed")
  18. wait(0.15)
  19. end
  20. end
  21. wait(2)
  22. end
  23. end
  24.  
  25. task.spawn(mobileFarm)
  26. print("✅ H4xScript Mobile Auto Farm V2 Running")
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement