local Players = game:GetService("Players") local TweenService = game:GetService("TweenService") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local playerGui = player:WaitForChild("PlayerGui") -- Создаем интерфейс local screenGui = Instance.new("ScreenGui") screenGui.Name = "MessageGui" screenGui.Parent = playerGui screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- Черный фон local background = Instance.new("Frame") background.Size = UDim2.new(1, 0, 1, 0) background.Position = UDim2.new(0, 0, 0, 0) background.BackgroundColor3 = Color3.new(0, 0, 0) background.BorderSizePixel = 0 background.Parent = screenGui -- Текст local textLabel = Instance.new("TextLabel") textLabel.AnchorPoint = Vector2.new(0.5, 0.5) textLabel.Position = UDim2.new(0.5, 0, 0.5, 0) textLabel.Size = UDim2.new(0.8, 0, 0.2, 0) textLabel.BackgroundTransparency = 1 textLabel.Text = "Hello, guys. Google deleting my account, sorry everyone(... But I can make new accounts(name soon:))." textLabel.TextColor3 = Color3.fromRGB(173, 216, 230) -- Светло-синий textLabel.TextScaled = true textLabel.Font = Enum.Font.SourceSansBold textLabel.TextWrapped = true textLabel.Parent = background -- Анимация покачивания local swayInfo = TweenInfo.new( 2, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, -1, true ) local swayTween = TweenService:Create( textLabel, swayInfo, {Rotation = 3} -- Угол наклона ) swayTween:Play()