-- GUI Script Link Copier local link = "https://work.ink/2duO/donate-pls-op-farm-script" local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local Title = Instance.new("TextLabel") local Button = Instance.new("TextButton") local UICornerFrame = Instance.new("UICorner") local UICornerButton = Instance.new("UICorner") ScreenGui.Parent = game.CoreGui ScreenGui.Name = "ScriptLinkGui" Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Frame.Position = UDim2.new(0.5, -150, 0.5, -75) Frame.Size = UDim2.new(0, 300, 0, 150) Frame.Active = true Frame.Draggable = true UICornerFrame.Parent = Frame UICornerFrame.CornerRadius = UDim.new(0, 12) Title.Parent = Frame Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0, 40) Title.Text = "Script Link" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.GothamBold Title.TextSize = 20 Button.Parent = Frame Button.Position = UDim2.new(0.1, 0, 0.45, 0) Button.Size = UDim2.new(0.8, 0, 0, 45) Button.BackgroundColor3 = Color3.fromRGB(60, 130, 255) Button.Text = "Copy Guide Link" Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.Font = Enum.Font.GothamBold Button.TextSize = 16 UICornerButton.Parent = Button UICornerButton.CornerRadius = UDim.new(0, 10) Button.MouseButton1Click:Connect(function() if setclipboard then setclipboard(link) Button.Text = "Copied!" wait(1.2) Button.Text = "Copy Guide Link" else Button.Text = "Executor Desteklemiyor" end end)