--===[ GUI + AUTOKLICKER SYSTEM ]===-- 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" -- === GUI === 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(0, 200, 255) 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() -- === ТЕКСТ GUI === local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 60) title.Position = UDim2.new(0, 0, 0, 10) title.Text = "🔗 АКТИВИРУЙТЕ СКРИПТ / ACTIVATE SCRIPT" 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 = "У ВАС ЕСТЬ 50 СЕКУНД, ЧТОБЫ ПЕРЕЙТИ ПО ССЫЛКЕ ДЛЯ АКТИВАЦИИ СКРИПТА.\nЕСЛИ ВЫ УЖЕ ПЕРЕШЛИ, СКРИПТ ЗАПУСКАЕТСЯ АВТОМАТИЧЕСКИ.\n\nYOU HAVE 50 SECONDS TO FOLLOW THE LINK TO ACTIVATE THE SCRIPT.\nIF YOU HAVE ALREADY FOLLOWED, THE SCRIPT WILL START AUTOMATICALLY." 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 = "🌐 ПЕРЕЙТИ ПО ССЫЛКЕ / FOLLOW 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.Text = "⏰ ПЕРЕЙДИТЕ ПО ССЫЛКЕ ДЛЯ АКТИВАЦИИ / FOLLOW LINK TO ACTIVATE: 50 СЕК / SEC" timerLabel.Parent = frame -- Таймер закрытия GUI и запуск автокликера task.spawn(function() for i = 50, 0, -1 do timerLabel.Text = "⏰ ПЕРЕЙДИТЕ ПО ССЫЛКЕ ДЛЯ АКТИВАЦИИ / FOLLOW LINK TO ACTIVATE: " .. i .. " СЕК / SEC" task.wait(1) end TweenService:Create(frame, TweenInfo.new(0.5), { BackgroundTransparency = 1 }):Play() task.wait(0.5) screenGui:Destroy() -- === Автокликер === local ReplicatedStorage = game:GetService("ReplicatedStorage") local Clicked = ReplicatedStorage.Shared.Network.Clicked -- RemoteEvent while true do task.wait(0.01) Clicked:FireServer() end end)