Advertisement
satyajitsrichandan

Uro's Grow A Garden Hub (Rayfield UI)

Jun 25th, 2025
107
-1
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 1
  1. -- 🌐 Uro's Grow A Garden Hub – Rayfield UI Edition (2025)
  2. -- Full feature hub: auto farm, dupe, spawners. Modern Rayfield design.
  3.  
  4. local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
  5.  
  6. local Window = Rayfield:CreateWindow({
  7. Name = "Uro's Grow A Garden Hub",
  8. LoadingTitle = "Grow a Garden – Uro Edition",
  9. ConfigurationSaving = {
  10. Enabled = true,
  11. FolderName = "UroGAG"
  12. }
  13. })
  14.  
  15. local Main = Window:CreateTab("Main Hub", 13014515132)
  16.  
  17. -- Auto Farm
  18. Main:CreateToggle({
  19. Name = "Auto Farm All",
  20. CurrentValue = false,
  21. Callback = function(val)
  22. if val then
  23. task.spawn(function()
  24. while val do
  25. for _, plot in pairs(workspace.GardenPlots:GetChildren()) do
  26. game.ReplicatedStorage:FireServer("HarvestPlant", plot)
  27. wait(0.1)
  28. game.ReplicatedStorage:FireServer("PlantSeed", plot, "TomatoSeed")
  29. wait(0.1)
  30. game.ReplicatedStorage:FireServer("WaterPlant", plot)
  31. wait(0.1)
  32. end
  33. wait(3)
  34. end
  35. end)
  36. end
  37. end
  38. })
  39.  
  40. -- Duplication
  41. Main:CreateInput({
  42. Name = "Dupe Item",
  43. PlaceholderText = "Enter Item Name",
  44. RemoveTextAfterFocusLost = false,
  45. Callback = function(itemName)
  46. for i = 1, 10 do
  47. game.ReplicatedStorage:FireServer("DuplicateItem", itemName)
  48. wait(0.2)
  49. end
  50. end
  51. })
  52.  
  53. -- Pet Spawner
  54. Main:CreateInput({
  55. Name = "Spawn Pet",
  56. PlaceholderText = "Enter Pet Name",
  57. RemoveTextAfterFocusLost = false,
  58. Callback = function(pet)
  59. game.ReplicatedStorage:FireServer("SpawnPet", pet)
  60. end
  61. })
  62.  
  63. -- Seed Spawner
  64. Main:CreateInput({
  65. Name = "Spawn Seed",
  66. PlaceholderText = "Enter Seed Name",
  67. RemoveTextAfterFocusLost = false,
  68. Callback = function(seed)
  69. game.ReplicatedStorage:FireServer("SpawnSeed", seed)
  70. end
  71. })
  72.  
  73. print("✅ Uro's Hub Loaded with Rayfield UI")
  74.  
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