Advertisement
satyajitsrichandan

🧩 Solix Hub (All-in-One)

Jun 25th, 2025
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. -- 🧩 Grow a Garden - Solix Hub (All-in-One) 2025
  2. -- Powerful full-feature hub: Auto Farm, Dupe, Spawner, TP
  3.  
  4. local rs = game:GetService("ReplicatedStorage")
  5. local garden = workspace:WaitForChild("GardenPlots")
  6. local player = game.Players.LocalPlayer
  7.  
  8. -- Basic GUI with tabs
  9. local gui = Instance.new("ScreenGui", player.PlayerGui)
  10. local frame = Instance.new("Frame", gui)
  11. frame.Size = UDim2.new(0, 240, 0, 220)
  12. frame.Position = UDim2.new(0, 40, 0, 80)
  13. frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  14.  
  15. local function makeBtn(text, posY, action)
  16. local btn = Instance.new("TextButton", frame)
  17. btn.Size = UDim2.new(0, 220, 0, 35)
  18. btn.Position = UDim2.new(0, 10, 0, posY)
  19. btn.Text = text
  20. btn.BackgroundColor3 = Color3.fromRGB(90, 140, 255)
  21. btn.TextColor3 = Color3.new(1, 1, 1)
  22. btn.MouseButton1Click:Connect(action)
  23. end
  24.  
  25. -- Auto Farm All
  26. makeBtn("Auto Farm All", 0.05, function()
  27. for _, plot in pairs(garden:GetChildren()) do
  28. rs:FireServer("HarvestPlant", plot)
  29. rs:FireServer("PlantSeed", plot, "SunflowerSeed")
  30. rs:FireServer("WaterPlant", plot)
  31. wait(0.2)
  32. end
  33. end)
  34.  
  35. -- Dupe Any Item
  36. makeBtn("Dupe Sheckles", 0.30, function()
  37. for i = 1, 10 do
  38. rs:FireServer("DuplicateItem", "Sheckles")
  39. wait(0.1)
  40. end
  41. end)
  42.  
  43. -- Spawners
  44. makeBtn("Spawn Pet: Fox", 0.55, function()
  45. rs:FireServer("SpawnPet", "FoxPet")
  46. end)
  47.  
  48. makeBtn("Spawn Seed: Rainbow", 0.75, function()
  49. rs:FireServer("SpawnSeed", "RainbowSeed")
  50. end)
  51.  
  52. print("✅ Solix Hub Loaded – All-In-One UI Ready")
  53.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement