Advertisement
Mr_JackII

local

Apr 13th, 2021
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.15 KB | None | 0 0
  1.  
  2. local Intro = Instance.new("ScreenGui")
  3. local bluebackground = Instance.new("Frame")
  4. local ultimateadminlogo = Instance.new("TextLabel")
  5. local line = Instance.new("Frame")
  6. local credit = Instance.new("TextLabel")
  7. local usetutorial = Instance.new("TextButton")
  8. local ImageLabel = Instance.new("ImageLabel")
  9. --Properties:
  10. Intro.Name = "Intro"
  11. Intro.Parent = game.CoreGui
  12.  
  13.  
  14. ImageLabel.Parent = Intro
  15. ImageLabel.BackgroundColor3 = Color3.new(128, 128, 128)
  16. ImageLabel.Position = UDim2.new(-0.0340000018, 0, -1000, 0)
  17. ImageLabel.Size = UDim2.new(0, 3000, 0, 2000)
  18. ImageLabel.Image = "http://www.roblox.com/asset/?id=4713289603"
  19.  
  20. ultimateadminlogo.Name = "ultimateadminlogo"
  21. ultimateadminlogo.Parent = Intro
  22. ultimateadminlogo.BackgroundColor3 = Color3.new(1, 1, 1)
  23. ultimateadminlogo.BackgroundTransparency = 1
  24. ultimateadminlogo.BorderSizePixel = 5
  25. ultimateadminlogo.Position = UDim2.new(0.232999995, 0, -50, 0)
  26. ultimateadminlogo.Size = UDim2.new(0, 813, 0, 227)
  27. ultimateadminlogo.Text = "NuhArt Admin"
  28. ultimateadminlogo.TextColor3 = Color3.new(0, 0, 0)
  29. ultimateadminlogo.TextScaled = true
  30. ultimateadminlogo.TextSize = 14
  31. ultimateadminlogo.TextStrokeTransparency = 0
  32. ultimateadminlogo.TextWrapped = true
  33.  
  34. line.Name = "line"
  35. line.Parent = Intro
  36. line.BackgroundColor3 = Color3.new(0, 0, 0)
  37. line.Position = UDim2.new(0.619000018, 0, -50, 0)
  38. line.Size = UDim2.new(0, 10, 0, 129)
  39.  
  40. credit.Name = "credit"
  41. credit.Parent = Intro
  42. credit.BackgroundColor3 = Color3.new(1, 1, 1)
  43. credit.BackgroundTransparency = 1
  44. credit.Position = UDim2.new(0.630999982, 0, -0.200000003, 0)
  45. credit.Size = UDim2.new(0, 156, 0, 102)
  46. credit.Font = Enum.Font.Highway
  47. credit.Text = "Made by Mr_JackII"
  48. credit.TextColor3 = Color3.new(0, 0, 0)
  49. credit.TextScaled = true
  50. credit.TextSize = 14
  51. credit.TextWrapped = true
  52.  
  53. usetutorial.Name = "usetutorial"
  54. usetutorial.Parent = Intro
  55. usetutorial.BackgroundColor3 = Color3.new(1, 1, 1)
  56. usetutorial.BackgroundTransparency = 1
  57. usetutorial.Position = UDim2.new(0.312999994, 0, 3, 0)
  58. usetutorial.Size = UDim2.new(0, 546, 0, 56)
  59. usetutorial.Font = Enum.Font.SourceSans
  60. usetutorial.Text = "Can be used for all exploits."
  61. usetutorial.TextColor3 = Color3.new(0, 0, 0)
  62. usetutorial.TextScaled = true
  63. usetutorial.TextSize = 14
  64. usetutorial.TextWrapped = true
  65.  
  66.  
  67. -- Scripts:
  68.  
  69. ImageLabel:TweenPosition(UDim2.new(-0.034, 0,-0.039, 0), 'In', 'Bounce', 3, true)
  70. wait(3)
  71. ultimateadminlogo:TweenPosition(UDim2.new(0.233, 0,0.361, 0), 'In', 'Bounce', 1, true)
  72. wait(1)
  73. line:TweenPosition(UDim2.new(0.619, 0,0.419, 0), 'In', 'Bounce', 1, true)
  74. wait(1)
  75. credit:TweenPosition(UDim2.new(0.631, 0,0.435, 0), 'In', 'Bounce', 0.6, true)
  76. wait(1)
  77. usetutorial:TweenPosition(UDim2.new(0.313, 0,0.556, 0), 'In', 'Bounce', 1, true)
  78. wait(3)
  79. credit:TweenPosition(UDim2.new(0.631, 0,-0.2, 0), 'Out', 'Linear', 0.2, true)
  80. wait(0.1)
  81. ultimateadminlogo:TweenPosition(UDim2.new(0.233, 0,-50, 0), 'Out', 'Linear', 1, true)
  82. wait(0.1)
  83. line:TweenPosition(UDim2.new(0.619, 0,-50, 0), 'Out', 'Linear', 1, true)
  84. wait(0.1)
  85. usetutorial:TweenPosition(UDim2.new(0.313, 0,3, 0), 'Out', 'Linear', 0.5, true)
  86. wait(1)
  87. ImageLabel:TweenPosition(UDim2.new(-0.034, 0,-1000, 0), 'Out', 'Bounce', 1, true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement