Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Zane Hub | Grow a Garden (Fully Ready)
- -- UI Rayfield – ChatGPT edition
- loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
- local rs = game:GetService("ReplicatedStorage")
- local Window = Rayfield:CreateWindow({
- Name = "Zane Hub | Grow a Garden",
- LoadingTitle = "Zane Hub",
- LoadingSubtitle = "By ChatGPT",
- ConfigurationSaving = { Enabled = true, FolderName = "ZaneHub", FileName = "GrowAGarden" },
- Discord = { Enabled = false },
- KeySystem = false,
- })
- -- Main Tab: Farming
- local MainTab = Window:CreateTab("Main", 4483362458)
- MainTab:CreateToggle({
- Name = "Auto Water",
- CurrentValue = false,
- Callback = function(state)
- getgenv().AutoWater = state
- while getgenv().AutoWater do
- pcall(function()
- rs.Events.WaterPlant:FireServer()
- end)
- task.wait(0.5)
- end
- end,
- })
- -- Pets Tab: Hatch Basic/Middle/Legendary
- local PetTab = Window:CreateTab("🐾 Pets", 4483362458)
- for _, tier in ipairs({"Basic", "Middle", "Legendary"}) do
- PetTab:CreateToggle({
- Name = "Auto Hatch " .. tier .. " Pet",
- CurrentValue = false,
- Callback = function(value)
- getgenv()["Auto" .. tier .. "Pet"] = value
- while getgenv()["Auto" .. tier .. "Pet"] do
- pcall(function()
- rs.Events.HatchPet:InvokeServer(tier)
- end)
- task.wait(1.5)
- end
- end,
- })
- end
- -- Shop Tab: Auto Buy Items
- local ShopTab = Window:CreateTab("🛒 Shop", 4483362458)
- local shopList = {
- {Name = "Seed", Event = "BuySeed"},
- {Name = "Gear", Event = "BuyGear"},
- {Name = "Egg", Event = "BuyEgg"},
- {Name = "Cosmetic", Event = "BuyCosmetic"},
- {Name = "Traveling Merchant", Event = "BuyFromMerchant"}
- }
- for _, item in ipairs(shopList) do
- ShopTab:CreateToggle({
- Name = "Auto Buy " .. item.Name,
- CurrentValue = false,
- Callback = function(value)
- getgenv()["AutoBuy" .. item.Name] = value
- while getgenv()["AutoBuy" .. item.Name] do
- pcall(function()
- rs.Events[item.Event]:FireServer()
- end)
- task.wait(1.5)
- end
- end,
- })
- end
- print("✅ Zane Hub Loaded Successfully")
Advertisement