ZenoDX12

Zane Hub

Aug 4th, 2025
818
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.26 KB | None | 0 0
  1. -- Zane Hub | Grow a Garden (Fully Ready)
  2. -- UI Rayfield – ChatGPT edition
  3.  
  4. loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Rayfield/main/source'))()
  5.  
  6. local rs = game:GetService("ReplicatedStorage")
  7. local Window = Rayfield:CreateWindow({
  8.    Name = "Zane Hub | Grow a Garden",
  9.    LoadingTitle = "Zane Hub",
  10.    LoadingSubtitle = "By ChatGPT",
  11.    ConfigurationSaving = { Enabled = true, FolderName = "ZaneHub", FileName = "GrowAGarden" },
  12.    Discord = { Enabled = false },
  13.    KeySystem = false,
  14. })
  15.  
  16. -- Main Tab: Farming
  17. local MainTab = Window:CreateTab("Main", 4483362458)
  18. MainTab:CreateToggle({
  19.    Name = "Auto Water",
  20.    CurrentValue = false,
  21.    Callback = function(state)
  22.       getgenv().AutoWater = state
  23.       while getgenv().AutoWater do
  24.          pcall(function()
  25.             rs.Events.WaterPlant:FireServer()
  26.          end)
  27.          task.wait(0.5)
  28.       end
  29.    end,
  30. })
  31.  
  32. -- Pets Tab: Hatch Basic/Middle/Legendary
  33. local PetTab = Window:CreateTab("🐾 Pets", 4483362458)
  34. for _, tier in ipairs({"Basic", "Middle", "Legendary"}) do
  35.    PetTab:CreateToggle({
  36.       Name = "Auto Hatch " .. tier .. " Pet",
  37.       CurrentValue = false,
  38.       Callback = function(value)
  39.          getgenv()["Auto" .. tier .. "Pet"] = value
  40.          while getgenv()["Auto" .. tier .. "Pet"] do
  41.             pcall(function()
  42.                rs.Events.HatchPet:InvokeServer(tier)
  43.             end)
  44.             task.wait(1.5)
  45.          end
  46.       end,
  47.    })
  48. end
  49.  
  50. -- Shop Tab: Auto Buy Items
  51. local ShopTab = Window:CreateTab("🛒 Shop", 4483362458)
  52. local shopList = {
  53.    {Name = "Seed", Event = "BuySeed"},
  54.    {Name = "Gear", Event = "BuyGear"},
  55.    {Name = "Egg", Event = "BuyEgg"},
  56.    {Name = "Cosmetic", Event = "BuyCosmetic"},
  57.    {Name = "Traveling Merchant", Event = "BuyFromMerchant"}
  58. }
  59. for _, item in ipairs(shopList) do
  60.    ShopTab:CreateToggle({
  61.       Name = "Auto Buy " .. item.Name,
  62.       CurrentValue = false,
  63.       Callback = function(value)
  64.          getgenv()["AutoBuy" .. item.Name] = value
  65.          while getgenv()["AutoBuy" .. item.Name] do
  66.             pcall(function()
  67.                rs.Events[item.Event]:FireServer()
  68.             end)
  69.             task.wait(1.5)
  70.          end
  71.       end,
  72.    })
  73. end
  74.  
  75. print("✅ Zane Hub Loaded Successfully")
Advertisement
Comments
  • User was banned
Add Comment
Please, Sign In to add comment