local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") local url = "https://go.linkify.ru/2DU4" local screenGui = Instance.new("ScreenGui") screenGui.Name = "LinkCopyGui" screenGui.IgnoreGuiInset = true screenGui.DisplayOrder = 9999 screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Global screenGui.Parent = playerGui local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 540, 0, 320) frame.Position = UDim2.new(0.5, -270, 0.5, -160) frame.BackgroundColor3 = Color3.fromRGB(18, 18, 24) frame.BorderSizePixel = 0 frame.ZIndex = 10 frame.Parent = screenGui local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 20) uiCorner.Parent = frame local stroke = Instance.new("UIStroke") stroke.Thickness = 3 stroke.Color = Color3.fromRGB(255, 0, 100) stroke.Parent = frame task.spawn(function() while true do for hue = 0, 255 do stroke.Color = Color3.fromHSV(hue/255, 1, 1) task.wait(0.02) end end end) frame.Size = UDim2.new(0, 0, 0, 0) TweenService:Create(frame, TweenInfo.new(0.8, Enum.EasingStyle.Quart, Enum.EasingDirection.Out), { Size = UDim2.new(0, 540, 0, 320) }):Play() local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 60) title.Position = UDim2.new(0, 0, 0, 10) title.Text = "🔗 ПОЛУЧИТЕ СКРИПТ БЕСПЛАТНО / GET THE SCRIPT FOR FREE" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundTransparency = 1 title.Font = Enum.Font.GothamBlack title.TextSize = 20 title.ZIndex = 11 title.Parent = frame local description = Instance.new("TextLabel") description.Size = UDim2.new(1, -60, 0, 120) description.Position = UDim2.new(0, 30, 0, 70) description.TextWrapped = true description.Text = "ПЕРЕЙДИТЕ ПО ССЫЛКЕ, ЧТОБЫ ПОЛУЧИТЬ СКРИПТ В ИСХОДНОМ КОДЕ.\nПОСЛЕ ЭТОГО ОКНО АВТОМАТИЧЕСКИ ЗАКРОЕТСЯ.\n\nFOLLOW THE LINK TO GET THE SCRIPT IN SOURCE CODE.\nTHIS WINDOW WILL CLOSE AUTOMATICALLY AFTER SOME TIME." description.TextColor3 = Color3.fromRGB(220, 220, 220) description.BackgroundTransparency = 1 description.Font = Enum.Font.GothamSemibold description.TextSize = 16 description.TextXAlignment = Enum.TextXAlignment.Center description.ZIndex = 11 description.Parent = frame local urlLabel = Instance.new("TextLabel") urlLabel.Size = UDim2.new(1, -40, 0, 30) urlLabel.Position = UDim2.new(0, 20, 0, 210) urlLabel.Text = url urlLabel.TextColor3 = Color3.fromRGB(0, 180, 255) urlLabel.BackgroundTransparency = 1 urlLabel.Font = Enum.Font.GothamBold urlLabel.TextSize = 17 urlLabel.ZIndex = 11 urlLabel.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(0, 300, 0, 50) button.Position = UDim2.new(0.5, -150, 1, -80) button.BackgroundColor3 = Color3.fromRGB(0, 120, 255) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Text = "🌐 ОТКРЫТЬ ССЫЛКУ / OPEN LINK" button.Font = Enum.Font.GothamBlack button.TextSize = 18 button.ZIndex = 12 button.Parent = frame local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 12) corner.Parent = button button.MouseEnter:Connect(function() TweenService:Create(button, TweenInfo.new(0.3), {BackgroundColor3 = Color3.fromRGB(0, 150, 255)}):Play() end) button.MouseLeave:Connect(function() TweenService:Create(button, TweenInfo.new(0.3), {BackgroundColor3 = Color3.fromRGB(0, 120, 255)}):Play() end) button.MouseButton1Click:Connect(function() pcall(function() setclipboard(url) end) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "СКОПИРОВАНО / COPIED", Text = "Ссылка скопирована в буфер обмена / Link copied.", Duration = 5 }) end) local timerLabel = Instance.new("TextLabel") timerLabel.Size = UDim2.new(1, 0, 0, 30) timerLabel.Position = UDim2.new(0, 0, 1, -35) timerLabel.TextColor3 = Color3.fromRGB(255, 255, 255) timerLabel.BackgroundTransparency = 1 timerLabel.Font = Enum.Font.GothamSemibold timerLabel.TextSize = 16 timerLabel.ZIndex = 11 timerLabel.Parent = frame task.spawn(function() for i = 50, 0, -1 do timerLabel.Text = "⏰ ОКНО ЗАКРОЕТСЯ ЧЕРЕЗ / CLOSES IN: " .. i .. " СЕК / SEC" task.wait(1) end TweenService:Create(frame, TweenInfo.new(0.5), {BackgroundTransparency = 1}):Play() task.wait(0.5) screenGui:Destroy() while task.wait(0.02) do pcall(function() game:GetService("ReplicatedStorage").Remote.Function.EasyGift.Click:InvokeServer() end) end end)