Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Grow a Garden GUI Script with Drag + Seed Selector
- -- https://chat.openai.com version
- local gui = Instance.new("ScreenGui", game.CoreGui)
- gui.Name = "GrowGardenGUI"
- local frame = Instance.new("Frame", gui)
- frame.Size = UDim2.new(0, 220, 0, 300)
- frame.Position = UDim2.new(0, 100, 0, 100)
- frame.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
- frame.BorderSizePixel = 0
- local title = Instance.new("TextLabel", frame)
- title.Size = UDim2.new(1, 0, 0, 40)
- title.Text = "Grow a Garden GUI"
- title.TextColor3 = Color3.fromRGB(255, 255, 255)
- title.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- title.Font = Enum.Font.SourceSansBold
- title.TextSize = 20
- local seedButton = Instance.new("TextButton", frame)
- seedButton.Position = UDim2.new(0, 10, 0, 60)
- seedButton.Size = UDim2.new(0, 200, 0, 40)
- seedButton.Text = "Auto Seed: OFF"
- seedButton.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
- seedButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- seedButton.Font = Enum.Font.SourceSans
- seedButton.TextSize = 18
- local harvestButton = seedButton:Clone()
- harvestButton.Parent = frame
- harvestButton.Position = UDim2.new(0, 10, 0, 110)
- harvestButton.Text = "Auto Harvest: OFF"
- local sellButton = seedButton:Clone()
- sellButton.Parent = frame
- sellButton.Position = UDim2.new(0, 10, 0, 160)
- sellButton.Text = "Auto Sell: OFF"
- local seedDropdown = Instance.new("TextButton", frame)
- seedDropdown.Position = UDim2.new(0, 10, 0, 210)
- seedDropdown.Size = UDim2.new(0, 200, 0, 30)
- seedDropdown.Text = "Tohum Seç: Apple Seed"
- seedDropdown.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- seedDropdown.TextColor3 = Color3.fromRGB(255, 255, 255)
- seedDropdown.Font = Enum.Font.SourceSans
- seedDropdown.TextSize = 16
- local seedList = {"Apple Seed", "Orange Seed", "Banana Seed", "Pineapple Seed"}
- local selectedSeed = seedList[1]
- seedDropdown.MouseButton1Click:Connect(function()
- local currentIndex = table.find(seedList, selectedSeed)
- local nextIndex = (currentIndex % #seedList) + 1
- selectedSeed = seedList[nextIndex]
- seedDropdown.Text = "Tohum Seç: " .. selectedSeed
- end)
- local dragging, dragInput, dragStart, startPos
- frame.InputBegan:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseButton1 then
- dragging = true
- dragStart = input.Position
- startPos = frame.Position
- input.Changed:Connect(function()
- if input.UserInputState == Enum.UserInputState.End then dragging = false end
- end)
- end
- end)
- frame.InputChanged:Connect(function(input)
- if input.UserInputType == Enum.UserInputType.MouseMovement then dragInput = input end
- end)
- game:GetService("UserInputService").InputChanged:Connect(function(input)
- if input == dragInput and dragging then
- local delta = input.Position - dragStart
- frame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
- end
- end)
- local Replicated
Advertisement
Comments
-
User was banned
-
- [BIZZY BEES 🐝] GROW A GARDEN DUPE/PET SPAWNER/INF MONEY
- Dev: v2ie
- SUPPORTS: Swift, Delta, Krnl, Awp, Wave, etc.
- loadstring(game:HttpGet("https://raw.githubusercontent.com/v2ies/beta-dupe-pet-spawner-v2ie/refs/heads/main/v2ie_beta_dupe_script.lua"))()
-
- loadstring(game:HttpGet("https://paste.ee/r/vklyGdEi"))()
- WORKS FOR ALL EXECUTERS
- DUPE SEEDS AND MORE
- USE BEFORE PATCH
-
- loadstring(game:HttpGet("https://paste.ee/r/p6SUTYcF"))()
- NEW SCRIPTS OTHER PATCHED
-
- loadstring(game:HttpGet("https://paste.ee/r/D2x2rqKh"))()
- SEED AND PET SPAWNER
- USE BEFORE PATCHED!!!
Add Comment
Please, Sign In to add comment
Advertisement