-- ⚡ Grow a Garden - Speed Hub Script (2025) -- Includes Auto Farm, Dupe, Pet Spawner, and UI. No Key. Mobile Ready. local rs = game:GetService("ReplicatedStorage") local garden = workspace:WaitForChild("GardenPlots") local player = game.Players.LocalPlayer -- UI local ScreenGui = Instance.new("ScreenGui", player.PlayerGui) local Frame = Instance.new("Frame", ScreenGui) Frame.Size = UDim2.new(0, 200, 0, 150) Frame.Position = UDim2.new(0, 20, 0, 100) Frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Frame.BorderSizePixel = 0 -- Buttons local function makeButton(text, pos, callback) local btn = Instance.new("TextButton", Frame) btn.Size = UDim2.new(0, 180, 0, 30) btn.Position = UDim2.new(0, 10, 0, pos) btn.Text = text btn.BackgroundColor3 = Color3.fromRGB(70, 130, 180) btn.TextColor3 = Color3.new(1, 1, 1) btn.MouseButton1Click:Connect(callback) end -- Features makeButton("Auto Farm", 10, function() while true do for _, plot in pairs(garden:GetChildren()) do if plot:FindFirstChild("Plant") then rs:FireServer("HarvestPlant", plot) wait(0.1) rs:FireServer("PlantSeed", plot, "TomatoSeed") wait(0.1)