Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Создаем ScreenGui
- local screenGui = Instance.new("ScreenGui")
- screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- -- Создаем Frame для фона
- local backgroundFrame = Instance.new("Frame")
- backgroundFrame.Size = UDim2.new(1, 0, 1, 0)
- backgroundFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Черный фон
- backgroundFrame.Parent = screenGui
- -- Создаем текстовый элемент
- local titleLabel = Instance.new("TextLabel")
- titleLabel.Size = UDim2.new(0, 400, 0, 100)
- titleLabel.Position = UDim2.new(0.5, -200, 0.5, -50)
- titleLabel.BackgroundTransparency = 1
- titleLabel.Text = "ECCS Searcher V2.7"
- titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) -- Белый текст
- titleLabel.TextScaled = true
- titleLabel.Font = Enum.Font.SourceSansBold
- titleLabel.Parent = backgroundFrame
- -- Создаем эффект свечения
- local glowEffect = Instance.new("UIStroke")
- glowEffect.Thickness = 5
- glowEffect.Color = Color3.fromRGB(0, 255, 255)
- glowEffect.Parent = titleLabel
- -- Используем TweenService для анимации
- local TweenService = game:GetService("TweenService")
- -- Анимация появления текста с увеличением и изменением цвета
- local appearTweenInfo = TweenInfo.new(3.5, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out)
- local appearTween = TweenService:Create(titleLabel, appearTweenInfo, {TextTransparency = 0, TextSize = 100, TextColor3 = Color3.fromRGB(0, 255, 0), Position = UDim2.new(0.5, -200, 0.4, -50)})
- appearTween:Play()
- -- Ждем завершения анимации появления
- appearTween.Completed:Wait()
- -- Добавляем эффект мерцания и изменения цвета
- local function blinkAndColorEffect()
- for i = 1, 5 do
- titleLabel.TextTransparency = 1
- wait(0.1)
- titleLabel.TextTransparency = 0
- titleLabel.TextColor3 = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255))
- glowEffect.Color = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255))
- wait(0.1)
- end
- end
- blinkAndColorEffect()
- -- Задержка перед исчезновением
- wait(2)
- -- Анимация исчезновения текста с уменьшением и изменением цвета
- local disappearTweenInfo = TweenInfo.new(3.5, Enum.EasingStyle.Quad, Enum.EasingDirection.In)
- local disappearTween = TweenService:Create(titleLabel, disappearTweenInfo, {TextTransparency = 1, TextSize = 50, TextColor3 = Color3.fromRGB(255, 0, 0), Position = UDim2.new(0.5, -200, 0.6, -50)})
- disappearTween:Play()
- -- Ждем завершения анимации исчезновения
- disappearTween.Completed:Wait()
- -- Удаление GUI после анимации
- screenGui:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement