Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- 🧩 Grow a Garden - Solix Hub (All-in-One) 2025
- -- Powerful full-feature hub: Auto Farm, Dupe, Spawner, TP
- local rs = game:GetService("ReplicatedStorage")
- local garden = workspace:WaitForChild("GardenPlots")
- local player = game.Players.LocalPlayer
- -- Basic GUI with tabs
- local gui = Instance.new("ScreenGui", player.PlayerGui)
- local frame = Instance.new("Frame", gui)
- frame.Size = UDim2.new(0, 240, 0, 220)
- frame.Position = UDim2.new(0, 40, 0, 80)
- frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
- local function makeBtn(text, posY, action)
- local btn = Instance.new("TextButton", frame)
- btn.Size = UDim2.new(0, 220, 0, 35)
- btn.Position = UDim2.new(0, 10, 0, posY)
- btn.Text = text
- btn.BackgroundColor3 = Color3.fromRGB(90, 140, 255)
- btn.TextColor3 = Color3.new(1, 1, 1)
- btn.MouseButton1Click:Connect(action)
- end
- -- Auto Farm All
- makeBtn("Auto Farm All", 0.05, function()
- for _, plot in pairs(garden:GetChildren()) do
- rs:FireServer("HarvestPlant", plot)
- rs:FireServer("PlantSeed", plot, "SunflowerSeed")
- rs:FireServer("WaterPlant", plot)
- wait(0.2)
- end
- end)
- -- Dupe Any Item
- makeBtn("Dupe Sheckles", 0.30, function()
- for i = 1, 10 do
- rs:FireServer("DuplicateItem", "Sheckles")
- wait(0.1)
- end
- end)
- -- Spawners
- makeBtn("Spawn Pet: Fox", 0.55, function()
- rs:FireServer("SpawnPet", "FoxPet")
- end)
- makeBtn("Spawn Seed: Rainbow", 0.75, function()
- rs:FireServer("SpawnSeed", "RainbowSeed")
- end)
- print("✅ Solix Hub Loaded – All-In-One UI Ready")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement