Advertisement
ERROR_CODE

Chat

Oct 26th, 2024 (edited)
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.87 KB | None | 0 0
  1. -- Создаем ScreenGui
  2. local screenGui = Instance.new("ScreenGui")
  3. screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  4.  
  5. -- Создаем Frame для фона
  6. local backgroundFrame = Instance.new("Frame")
  7. backgroundFrame.Size = UDim2.new(1, 0, 1, 0)
  8. backgroundFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) -- Черный фон
  9. backgroundFrame.Parent = screenGui
  10.  
  11. -- Создаем текстовый элемент
  12. local titleLabel = Instance.new("TextLabel")
  13. titleLabel.Size = UDim2.new(0, 400, 0, 100)
  14. titleLabel.Position = UDim2.new(0.5, -200, 0.5, -50)
  15. titleLabel.BackgroundTransparency = 1
  16. titleLabel.Text = "ECCS Searcher V2.7"
  17. titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) -- Белый текст
  18. titleLabel.TextScaled = true
  19. titleLabel.Font = Enum.Font.SourceSansBold
  20. titleLabel.Parent = backgroundFrame
  21.  
  22. -- Создаем эффект свечения
  23. local glowEffect = Instance.new("UIStroke")
  24. glowEffect.Thickness = 5
  25. glowEffect.Color = Color3.fromRGB(0, 255, 255)
  26. glowEffect.Parent = titleLabel
  27.  
  28. -- Используем TweenService для анимации
  29. local TweenService = game:GetService("TweenService")
  30.  
  31. -- Анимация появления текста с увеличением и изменением цвета
  32. local appearTweenInfo = TweenInfo.new(3.5, Enum.EasingStyle.Bounce, Enum.EasingDirection.Out)
  33. 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)})
  34. appearTween:Play()
  35.  
  36. -- Ждем завершения анимации появления
  37. appearTween.Completed:Wait()
  38.  
  39. -- Добавляем эффект мерцания и изменения цвета
  40. local function blinkAndColorEffect()
  41.     for i = 1, 5 do
  42.         titleLabel.TextTransparency = 1
  43.         wait(0.1)
  44.         titleLabel.TextTransparency = 0
  45.         titleLabel.TextColor3 = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255))
  46.         glowEffect.Color = Color3.fromRGB(math.random(0, 255), math.random(0, 255), math.random(0, 255))
  47.         wait(0.1)
  48.     end
  49. end
  50.  
  51. blinkAndColorEffect()
  52.  
  53. -- Задержка перед исчезновением
  54. wait(2)
  55.  
  56. -- Анимация исчезновения текста с уменьшением и изменением цвета
  57. local disappearTweenInfo = TweenInfo.new(3.5, Enum.EasingStyle.Quad, Enum.EasingDirection.In)
  58. 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)})
  59. disappearTween:Play()
  60.  
  61. -- Ждем завершения анимации исчезновения
  62. disappearTween.Completed:Wait()
  63.  
  64. -- Удаление GUI после анимации
  65. screenGui:Destroy()
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement