Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- ⚡ Grow a Garden - Speed Hub X (Honey + More) (2025)
- -- High-performance all-in-one: honey farm, spawner, auto farm
- local rs = game:GetService("ReplicatedStorage")
- local garden = workspace:WaitForChild("GardenPlots")
- local player = game.Players.LocalPlayer
- -- UI Setup
- local gui = Instance.new("ScreenGui", player.PlayerGui)
- local frame = Instance.new("Frame", gui)
- frame.Size = UDim2.new(0, 230, 0, 190)
- frame.Position = UDim2.new(0, 30, 0, 100)
- frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
- local function makeButton(label, posY, callback)
- local btn = Instance.new("TextButton", frame)
- btn.Size = UDim2.new(0, 210, 0, 35)
- btn.Position = UDim2.new(0, 10, 0, posY)
- btn.Text = label
- btn.BackgroundColor3 = Color3.fromRGB(255, 180, 60)
- btn.TextColor3 = Color3.new(0, 0, 0)
- btn.MouseButton1Click:Connect(callback)
- end
- -- Honey Farm
- makeButton("Auto Farm Honey", 0.05, function()
- for _, hive in pairs(workspace:WaitForChild("BeeHives"):GetChildren()) do
- rs:FireServer("HarvestHoney", hive)
- wait(0.1)
- end
- end)
- -- Auto Farm
- makeButton("Auto Farm Crops", 0.30, function()
- for _, plot in pairs(garden:GetChildren()) do
- rs:FireServer("HarvestPlant", plot)
- rs:FireServer("PlantSeed", plot, "CarrotSeed")
- rs:FireServer("WaterPlant", plot)
- wait(0.2)
- end
- end)
- -- Spawners
- makeButton("Spawn Pet (Bunny)", 0.55, function()
- rs:FireServer("SpawnPet", "BunnyPet")
- end)
- makeButton("Spawn Seed (Golden)", 0.80, function()
- rs:FireServer("SpawnSeed", "GoldenSeed")
- end)
- print("✅ Speed Hub X Loaded – Fast Execution UI Ready")
Advertisement
Comments
-
- [UPD SUGAR APPLE 🍏] GROW A GARDEN DUPE/PET SPAWNER/INF MONEY!
- [⚠️ DONT USE FAKE SCRIPTS ⚠️]
- Dev: v2ie
- SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
- loadstring(game:HttpGet("https://raw.githubusercontent.com/v2ies/beta-dupe-pet-spawner-v2ie/refs/heads/main/v2ie_beta_dupe_script.lua"))()
- [EGG PREDICTOR 🔮] GROW A GARDEN HATCH ANY PETS YOU WANT!
- [⚠️ DONT USE FAKE SCRIPTS ⚠️]
- Dev: v2ie
- SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
- loadstring(game:HttpGet("https://raw.githubusercontent.com/VOXHOB/RiftHUB/refs/heads/main/egg-predictor.lua"))()
Add Comment
Please, Sign In to add comment
Advertisement