Advertisement
Imperious123

Untitled

Dec 12th, 2019
6,358
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. local nl = Instance.new("ScreenGui")
  2. local background = Instance.new("Frame")
  3. local label2 = Instance.new("TextLabel")
  4. local label1 = Instance.new("TextLabel")
  5.  
  6. nl.Name = "NemesisLoaded"
  7. nl.Parent = game.CoreGui
  8. nl.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  9.  
  10. background.Name = "background"
  11. background.Parent = nl
  12. background.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  13. background.BorderSizePixel = 0
  14. background.Position = UDim2.new(1, 0, 1, 0)
  15. background.Size = UDim2.new(0, 200, 0, 120)
  16.  
  17. label2.Name = "label2"
  18. label2.Parent = background
  19. label2.BackgroundColor3 = Color3.new(1, 1, 1)
  20. label2.BackgroundTransparency = 1
  21. label2.Position = UDim2.new(0.5, -70, 0.5, 0)
  22. label2.Size = UDim2.new(0, 140, 0, 27)
  23. label2.Font = Enum.Font.SciFi
  24. label2.Text = "Loaded!"
  25. label2.TextColor3 = Color3.new(0.866667, 0.184314, 0.184314)
  26. label2.TextScaled = true
  27. label2.TextSize = 14
  28. label2.TextWrapped = true
  29.  
  30. label1.Name = "label1"
  31. label1.Parent = background
  32. label1.BackgroundColor3 = Color3.new(1, 1, 1)
  33. label1.BackgroundTransparency = 1
  34. label1.Position = UDim2.new(0.5, -70, 0.5, -40)
  35. label1.Size = UDim2.new(0, 140, 0, 40)
  36. label1.Font = Enum.Font.SciFi
  37. label1.Text = "Nemesis"
  38. label1.TextColor3 = Color3.new(1, 1, 1)
  39. label1.TextScaled = true
  40. label1.TextSize = 14
  41. label1.TextWrapped = true
  42.  
  43. spawn(function()
  44. local child = {}
  45. child = background:GetChildren()
  46. background:TweenPosition(UDim2.new(0.5,-100,0.5,-100), "Out", "Back", 1, true)
  47. wait(2)
  48. while background.BackgroundTransparency ~= 1 and wait() do
  49. background.BackgroundTransparency = background.BackgroundTransparency + 0.1
  50. for i, v in ipairs(child) do
  51. v.TextTransparency = v.TextTransparency + 0.1
  52. end
  53. end
  54. wait(5)
  55. nl:Remove()
  56. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement