Advertisement
Dncnnejgjrje

Grow a garden

Apr 13th, 2025
942
0
Never
5
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1. -- Grow a Garden GUI Script with Drag + Seed Selector
  2. -- https://chat.openai.com version
  3.  
  4. local gui = Instance.new("ScreenGui", game.CoreGui)
  5. gui.Name = "GrowGardenGUI"
  6.  
  7. local frame = Instance.new("Frame", gui)
  8. frame.Size = UDim2.new(0, 220, 0, 300)
  9. frame.Position = UDim2.new(0, 100, 0, 100)
  10. frame.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  11. frame.BorderSizePixel = 0
  12.  
  13. local title = Instance.new("TextLabel", frame)
  14. title.Size = UDim2.new(1, 0, 0, 40)
  15. title.Text = "Grow a Garden GUI"
  16. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  17. title.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  18. title.Font = Enum.Font.SourceSansBold
  19. title.TextSize = 20
  20.  
  21. local seedButton = Instance.new("TextButton", frame)
  22. seedButton.Position = UDim2.new(0, 10, 0, 60)
  23. seedButton.Size = UDim2.new(0, 200, 0, 40)
  24. seedButton.Text = "Auto Seed: OFF"
  25. seedButton.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  26. seedButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  27. seedButton.Font = Enum.Font.SourceSans
  28. seedButton.TextSize = 18
  29.  
  30. local harvestButton = seedButton:Clone()
  31. harvestButton.Parent = frame
  32. harvestButton.Position = UDim2.new(0, 10, 0, 110)
  33. harvestButton.Text = "Auto Harvest: OFF"
  34.  
  35. local sellButton = seedButton:Clone()
  36. sellButton.Parent = frame
  37. sellButton.Position = UDim2.new(0, 10, 0, 160)
  38. sellButton.Text = "Auto Sell: OFF"
  39.  
  40. local seedDropdown = Instance.new("TextButton", frame)
  41. seedDropdown.Position = UDim2.new(0, 10, 0, 210)
  42. seedDropdown.Size = UDim2.new(0, 200, 0, 30)
  43. seedDropdown.Text = "Tohum Seç: Apple Seed"
  44. seedDropdown.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  45. seedDropdown.TextColor3 = Color3.fromRGB(255, 255, 255)
  46. seedDropdown.Font = Enum.Font.SourceSans
  47. seedDropdown.TextSize = 16
  48.  
  49. local seedList = {"Apple Seed", "Orange Seed", "Banana Seed", "Pineapple Seed"}
  50. local selectedSeed = seedList[1]
  51.  
  52. seedDropdown.MouseButton1Click:Connect(function()
  53. local currentIndex = table.find(seedList, selectedSeed)
  54. local nextIndex = (currentIndex % #seedList) + 1
  55. selectedSeed = seedList[nextIndex]
  56. seedDropdown.Text = "Tohum Seç: " .. selectedSeed
  57. end)
  58.  
  59. local dragging, dragInput, dragStart, startPos
  60. frame.InputBegan:Connect(function(input)
  61. if input.UserInputType == Enum.UserInputType.MouseButton1 then
  62. dragging = true
  63. dragStart = input.Position
  64. startPos = frame.Position
  65. input.Changed:Connect(function()
  66. if input.UserInputState == Enum.UserInputState.End then dragging = false end
  67. end)
  68. end
  69. end)
  70.  
  71. frame.InputChanged:Connect(function(input)
  72. if input.UserInputType == Enum.UserInputType.MouseMovement then dragInput = input end
  73. end)
  74.  
  75. game:GetService("UserInputService").InputChanged:Connect(function(input)
  76. if input == dragInput and dragging then
  77. local delta = input.Position - dragStart
  78. frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  79. end
  80. end)
  81.  
  82. local Replicated
  83.  
Advertisement
Comments
  • User was banned
  • V2ies
    6 days
    # Lua 0.25 KB | 0 0
    1. [BIZZY BEES 🐝] GROW A GARDEN DUPE/PET SPAWNER/INF MONEY
    2. Dev: v2ie
    3. SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
    4. loadstring(game:HttpGet("https://raw.githubusercontent.com/v2ies/beta-dupe-pet-spawner-v2ie/refs/heads/main/v2ie_beta_dupe_script.lua"))()
  • menikid673
    6 days
    # text 0.12 KB | 0 0
    1. loadstring(game:HttpGet("https://paste.ee/r/vklyGdEi"))()
    2. WORKS FOR ALL EXECUTERS
    3. DUPE SEEDS AND MORE
    4. USE BEFORE PATCH
  • menikid673
    5 days
    # text 0.08 KB | 0 0
    1. loadstring(game:HttpGet("https://paste.ee/r/p6SUTYcF"))()
    2. NEW SCRIPTS OTHER PATCHED
  • Ch1ngW1ng
    3 hours
    # text 0.11 KB | 0 0
    1. loadstring(game:HttpGet("https://paste.ee/r/D2x2rqKh"))()
    2.  
    3.  
    4. SEED AND PET SPAWNER
    5.  
    6. USE BEFORE PATCHED!!!
Add Comment
Please, Sign In to add comment
Advertisement