Advertisement
MegumuSenpai

Credits

Aug 15th, 2019 (edited)
417,245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. coroutine.resume((coroutine.create(function()
  2. local GUI = Instance.new("ScreenGui", game.CoreGui)
  3. wait(0.9)
  4. local Frame1 = Instance.new("Frame", GUI)
  5. Frame1.Name = "MainFrame"
  6. Frame1.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  7. Frame1.BorderSizePixel = 0
  8. Frame1.Position = UDim2.new(0.5, -175, 0, 50)
  9. Frame1.Size = UDim2.new(0, 0, 0, 80)
  10. local Label = Instance.new("TextLabel", Frame1)
  11. Label.Name = "TextLabel"
  12. Label.BackgroundTransparency = 1
  13. Label.Position = UDim2.new(0, 0, 0.5, -15)
  14. Label.Size = UDim2.new(1, 0, 0, 30)
  15. Label.Font = Enum.Font.SourceSansLight
  16. Label.Text = ""
  17. Label.TextColor3 = Color3.fromRGB(236, 240, 241)
  18. Label.TextScaled = true
  19. local Frame2 = Instance.new("Frame", Frame1)
  20. Frame2.Name = "Bar"
  21. Frame2.BackgroundColor3 = Color3.fromRGB(45, 45, 45)
  22. Frame2.BorderSizePixel = 0
  23. Frame2.Position = UDim2.new(0, 0, 1, 0)
  24. Frame2.Size = UDim2.new(1, 0, 0, 0)
  25. Frame2.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  26. Frame1:TweenSize(UDim2.new(0, 350, 0, 80), "Out", "Sine", 0.5)
  27. wait(1)
  28. Frame2:TweenSizeAndPosition(UDim2.new(1, 0, 0, 5), UDim2.new(0, 0, 1, -5), "Out", "Sine", 0.1)
  29. local text = " Made by Megumu / Egg Salad "
  30. for i = 1, string.len(text) do
  31. Label.Text = string.sub(text, 1, i)
  32. wait()
  33. end
  34. wait(2)
  35. for i = 1, string.len(text) do
  36. Label.Text = Label.Text:sub(1, -2)
  37. wait()
  38. end
  39. local text = " discord.gg/5xSx5PSmGj "
  40. for i = 1, string.len(text) do
  41. Label.Text = string.sub(text, 1, i)
  42. wait()
  43. end
  44. wait(4)
  45. for i = 1, string.len(text) do
  46. Label.Text = Label.Text:sub(1, -2)
  47. wait()
  48. end
  49. for i=0,1,0.09 do
  50. Frame1.Transparency = i
  51. Frame2.Transparency = i
  52. wait()
  53. end
  54. GUI:Destroy()
  55. end)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement