Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Super Seed Giver GUI by arx
- local ScreenGui = Instance.new("ScreenGui")
- local Main = Instance.new("Frame")
- local Toggle = Instance.new("TextButton")
- local Title = Instance.new("TextLabel")
- local ToggleState = false
- -- GUI Setup
- ScreenGui.Name = "SuperSeedGiverGUI"
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Main.Name = "Main"
- Main.Size = UDim2.new(0, 200, 0, 120)
- Main.Position = UDim2.new(0.5, -100, 0.5, -60)
- Main.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- Main.BorderSizePixel = 0
- Main.Active = true
- Main.Draggable = true
- Main.Parent = ScreenGui
- Title.Name = "Title"
- Title.Size = UDim2.new(1, 0, 0, 30)
- Title.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
- Title.Text = "Super Seed Giver"
- Title.TextColor3 = Color3.fromRGB(255, 255, 255)
- Title.Font = Enum.Font.SourceSansBold
- Title.TextSize = 18
- Title.Parent = Main
- Toggle.Name = "GetSuperSeed"
- Toggle.Size = UDim2.new(0.8, 0, 0, 40)
- Toggle.Position = UDim2.new(0.1, 0, 0.5, -20)
- Toggle.BackgroundColor3 = Color3.fromRGB(70, 130, 180)
- Toggle.TextColor3 = Color3.fromRGB(255, 255, 255)
- Toggle.Font = Enum.Font.SourceSansBold
- Toggle.TextSize = 16
- Toggle.Text = "Get Super Seed"
- Toggle.Parent = Main
- -- Toggle Function
- Toggle.MouseButton1Click:Connect(function()
- ToggleState = not ToggleState
- if ToggleState then
- Toggle.BackgroundColor3 = Color3.fromRGB(34, 139, 34)
- Toggle.Text = "Getting..."
- pcall(function()
- local args = {
- [1] = "";
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Assets", 9e9):WaitForChild("Remotes", 9e9):WaitForChild("öhjkäyujluyljkuylko", 9e9):InvokeServer(unpack(args))
- end)
- wait(0.5)
- Toggle.Text = "Get Super Seed"
- Toggle.BackgroundColor3 = Color3.fromRGB(70, 130, 180)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment