Advertisement
satyajitsrichandan

⚡ Speed Hub X (Honey Farm & More)

Jun 25th, 2025
31
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. -- ⚡ Grow a Garden - Speed Hub X (Honey + More) (2025)
  2. -- High-performance all-in-one: honey farm, spawner, auto farm
  3.  
  4. local rs = game:GetService("ReplicatedStorage")
  5. local garden = workspace:WaitForChild("GardenPlots")
  6. local player = game.Players.LocalPlayer
  7.  
  8. -- UI Setup
  9. local gui = Instance.new("ScreenGui", player.PlayerGui)
  10. local frame = Instance.new("Frame", gui)
  11. frame.Size = UDim2.new(0, 230, 0, 190)
  12. frame.Position = UDim2.new(0, 30, 0, 100)
  13. frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  14.  
  15. local function makeButton(label, posY, callback)
  16. local btn = Instance.new("TextButton", frame)
  17. btn.Size = UDim2.new(0, 210, 0, 35)
  18. btn.Position = UDim2.new(0, 10, 0, posY)
  19. btn.Text = label
  20. btn.BackgroundColor3 = Color3.fromRGB(255, 180, 60)
  21. btn.TextColor3 = Color3.new(0, 0, 0)
  22. btn.MouseButton1Click:Connect(callback)
  23. end
  24.  
  25. -- Honey Farm
  26. makeButton("Auto Farm Honey", 0.05, function()
  27. for _, hive in pairs(workspace:WaitForChild("BeeHives"):GetChildren()) do
  28. rs:FireServer("HarvestHoney", hive)
  29. wait(0.1)
  30. end
  31. end)
  32.  
  33. -- Auto Farm
  34. makeButton("Auto Farm Crops", 0.30, function()
  35. for _, plot in pairs(garden:GetChildren()) do
  36. rs:FireServer("HarvestPlant", plot)
  37. rs:FireServer("PlantSeed", plot, "CarrotSeed")
  38. rs:FireServer("WaterPlant", plot)
  39. wait(0.2)
  40. end
  41. end)
  42.  
  43. -- Spawners
  44. makeButton("Spawn Pet (Bunny)", 0.55, function()
  45. rs:FireServer("SpawnPet", "BunnyPet")
  46. end)
  47.  
  48. makeButton("Spawn Seed (Golden)", 0.80, function()
  49. rs:FireServer("SpawnSeed", "GoldenSeed")
  50. end)
  51.  
  52. print("✅ Speed Hub X Loaded – Fast Execution UI Ready")
  53.  
Advertisement
Comments
  • V2ies
    4 days
    # Lua 0.56 KB | 0 0
    1. [UPD SUGAR APPLE 🍏] GROW A GARDEN DUPE/PET SPAWNER/INF MONEY!
    2. [⚠️ DONT USE FAKE SCRIPTS ⚠️]
    3. Dev: v2ie
    4. SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
    5. loadstring(game:HttpGet("https://raw.githubusercontent.com/v2ies/beta-dupe-pet-spawner-v2ie/refs/heads/main/v2ie_beta_dupe_script.lua"))()
    6.  
    7. [EGG PREDICTOR 🔮] GROW A GARDEN HATCH ANY PETS YOU WANT!
    8. [⚠️ DONT USE FAKE SCRIPTS ⚠️]
    9. Dev: v2ie
    10. SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
    11. loadstring(game:HttpGet("https://raw.githubusercontent.com/VOXHOB/RiftHUB/refs/heads/main/egg-predictor.lua"))()
Add Comment
Please, Sign In to add comment
Advertisement