--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local TextLabel = Instance.new("TextLabel") local CopyLinkButton = Instance.new("TextButton") local UICorner = Instance.new("UICorner") --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling Frame.Parent = ScreenGui Frame.BackgroundColor3 = Color3.fromRGB(54, 54, 54) Frame.BorderColor3 = Color3.fromRGB(0, 0, 0) Frame.BorderSizePixel = 0 Frame.Position = UDim2.new(0.5, -150, 0.5, -50) -- Центрирование Frame Frame.Size = UDim2.new(0, 300, 0, 100) Frame.AnchorPoint = Vector2.new(0.5, 0.5) Frame.Active = true Frame.Draggable = true TextLabel.Parent = Frame TextLabel.BackgroundColor3 = Color3.fromRGB(45, 45, 45) TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.05, 0, 0.036, 0) -- Сдвиг текста сильнее влево TextLabel.Size = UDim2.new(0, 275, 0, 36) TextLabel.Font = Enum.Font.Unknown TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.TextScaled = true TextLabel.TextSize = 14.000 TextLabel.TextWrapped = true TextLabel.Text = "Get script in TGK" CopyLinkButton.Parent = Frame CopyLinkButton.BackgroundColor3 = Color3.fromRGB(45, 45, 45) CopyLinkButton.BorderColor3 = Color3.fromRGB(0, 0, 0) CopyLinkButton.BorderSizePixel = 0 CopyLinkButton.Position = UDim2.new(0.5, 0, 0.7, 0) -- Центрирование кнопки CopyLinkButton.Size = UDim2.new(0, 200, 0, 40) CopyLinkButton.Font = Enum.Font.FredokaOne CopyLinkButton.Text = "Click to copy TGK Link!" CopyLinkButton.TextColor3 = Color3.fromRGB(255, 255, 255) CopyLinkButton.TextSize = 18.000 CopyLinkButton.TextWrapped = true CopyLinkButton.AnchorPoint = Vector2.new(0.5, 0.5) UICorner.Parent = CopyLinkButton CopyLinkButton.MouseButton1Click:Connect(function() setclipboard("https://t.me/+dJE5cNx96_5kYjFh") CopyLinkButton.Text = "Success copy!" CopyLinkButton.TextColor3 = Color3.fromRGB(0, 255, 0) -- Зеленый текст end)