Advertisement
satyajitsrichandan

Grow a Garden Speed Hub Script 2025

Jun 24th, 2025
41
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. -- ⚡ Grow a Garden - Speed Hub Script (2025)
  2. -- Includes Auto Farm, Dupe, Pet Spawner, and UI. No Key. Mobile Ready.
  3.  
  4. local rs = game:GetService("ReplicatedStorage")
  5. local garden = workspace:WaitForChild("GardenPlots")
  6. local player = game.Players.LocalPlayer
  7.  
  8. -- UI
  9. local ScreenGui = Instance.new("ScreenGui", player.PlayerGui)
  10. local Frame = Instance.new("Frame", ScreenGui)
  11. Frame.Size = UDim2.new(0, 200, 0, 150)
  12. Frame.Position = UDim2.new(0, 20, 0, 100)
  13. Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  14. Frame.BorderSizePixel = 0
  15.  
  16. -- Buttons
  17. local function makeButton(text, pos, callback)
  18. local btn = Instance.new("TextButton", Frame)
  19. btn.Size = UDim2.new(0, 180, 0, 30)
  20. btn.Position = UDim2.new(0, 10, 0, pos)
  21. btn.Text = text
  22. btn.BackgroundColor3 = Color3.fromRGB(70, 130, 180)
  23. btn.TextColor3 = Color3.new(1, 1, 1)
  24. btn.MouseButton1Click:Connect(callback)
  25. end
  26.  
  27. -- Features
  28. makeButton("Auto Farm", 10, function()
  29. while true do
  30. for _, plot in pairs(garden:GetChildren()) do
  31. if plot:FindFirstChild("Plant") then
  32. rs:FireServer("HarvestPlant", plot)
  33. wait(0.1)
  34. rs:FireServer("PlantSeed", plot, "TomatoSeed")
  35. wait(0.1)
  36.  
Tags: Auto farm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement