Guest User

Garden RNG Script

a guest
May 28th, 2025
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.74 KB | Gaming | 0 0
  1. -- Super Seed Giver GUI by arx
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Main = Instance.new("Frame")
  4. local Toggle = Instance.new("TextButton")
  5. local Title = Instance.new("TextLabel")
  6. local ToggleState = false
  7.  
  8. -- GUI Setup
  9. ScreenGui.Name = "SuperSeedGiverGUI"
  10. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11.  
  12. Main.Name = "Main"
  13. Main.Size = UDim2.new(0, 200, 0, 120)
  14. Main.Position = UDim2.new(0.5, -100, 0.5, -60)
  15. Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  16. Main.BorderSizePixel = 0
  17. Main.Active = true
  18. Main.Draggable = true
  19. Main.Parent = ScreenGui
  20.  
  21. Title.Name = "Title"
  22. Title.Size = UDim2.new(1, 0, 0, 30)
  23. Title.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  24. Title.Text = "Super Seed Giver"
  25. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  26. Title.Font = Enum.Font.SourceSansBold
  27. Title.TextSize = 18
  28. Title.Parent = Main
  29.  
  30. Toggle.Name = "GetSuperSeed"
  31. Toggle.Size = UDim2.new(0.8, 0, 0, 40)
  32. Toggle.Position = UDim2.new(0.1, 0, 0.5, -20)
  33. Toggle.BackgroundColor3 = Color3.fromRGB(70, 130, 180)
  34. Toggle.TextColor3 = Color3.fromRGB(255, 255, 255)
  35. Toggle.Font = Enum.Font.SourceSansBold
  36. Toggle.TextSize = 16
  37. Toggle.Text = "Get Super Seed"
  38. Toggle.Parent = Main
  39.  
  40. -- Toggle Function
  41. Toggle.MouseButton1Click:Connect(function()
  42. ToggleState = not ToggleState
  43. if ToggleState then
  44. Toggle.BackgroundColor3 = Color3.fromRGB(34, 139, 34)
  45. Toggle.Text = "Getting..."
  46. pcall(function()
  47. local args = {
  48. [1] = "";
  49. }
  50. game:GetService("ReplicatedStorage"):WaitForChild("Assets", 9e9):WaitForChild("Remotes", 9e9):WaitForChild("öhjkäyujluyljkuylko", 9e9):InvokeServer(unpack(args))
  51. end)
  52. wait(0.5)
  53. Toggle.Text = "Get Super Seed"
  54. Toggle.BackgroundColor3 = Color3.fromRGB(70, 130, 180)
  55. end
  56. end)
Advertisement
Add Comment
Please, Sign In to add comment