Advertisement
deyzaeuhfowkf

woah

Apr 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. -- ((KEEP THIS))
  2. local screenGui = Instance.new("ScreenGui")
  3. screenGui.Parent = script.Parent
  4.  
  5.  
  6. -- Images
  7. local bgm = Instance.new("ImageLabel")
  8. bgm.Parent = screenGui
  9. bgm.Position = UDim2.new(0, -1000, 0, 0)
  10. bgm.Size = UDim2.new(0, 1000, 0, 1000)
  11. bgm.Image = "rbxassetid://663609364"
  12. bgm.BorderSizePixel = 0
  13. local square1 = Instance.new("ImageLabel")
  14. square1.Parent = screenGui
  15. square1.Position = UDim2.new(0, -1000, 0, 0)
  16. square1.Size = UDim2.new(0, 1000, 0, 100)
  17. square1.Image = "rbxassetid://997018324"
  18. square1.BorderSizePixel = 0
  19. local square2 = Instance.new("ImageLabel")
  20. square2.Parent = screenGui
  21. square2.Position = UDim2.new(0, 1000, 0, 450)
  22. square2.Size = UDim2.new(0, 1000, 0, 100)
  23. square2.Image = "rbxassetid://997018324"
  24. square2.BorderSizePixel = 0
  25. local textbox = Instance.new("ImageLabel")
  26. textbox.Parent = screenGui
  27. textbox.Position = UDim2.new(0, 0, 0, 500)
  28. textbox.Size = UDim2.new(0, 450, 0, 150)
  29. textbox.Image = "rbxassetid://1524783598"
  30. textbox.BorderSizePixel = 0
  31. textbox.BackgroundTransparency = 1
  32. local boss = Instance.new("ImageLabel")
  33. boss.Parent = screenGui
  34. boss.Position = UDim2.new(0, 660, 0, 50)
  35. boss.Size = UDim2.new(0, 450, 0, 450)
  36. boss.Image = "rbxassetid://847179987"
  37. boss.BorderSizePixel = 0
  38. boss.BackgroundTransparency = 1
  39.  
  40. -- TextLabels!
  41. local name = Instance.new("TextLabel")
  42. name.Parent = screenGui
  43. name.BackgroundTransparency = 1
  44. name.BorderSizePixel = 0
  45. name.TextSize = 500
  46. name.Font = "Highway"
  47. name.Position = UDim2.new(0, 150, 0, -500)
  48. name.Size = UDim2.new(0, 150, 0, 50)
  49. name.BackgroundColor3 = BrickColor.White().Color
  50. name.Text = "Vs Coldsteel"
  51.  
  52.  
  53. --Animating!
  54. if boss.Position == UDim2.new(0, 660, 0, 50)then
  55. wait(1)
  56. boss:TweenPosition(UDim2.new(0, 300, 0, 50),"In","Quart",1.3,true)
  57. if bgm.Position == UDim2.new(0, -1000, 0, 0)then
  58. bgm:TweenPosition(UDim2.new(0, 0, 0, 0),"In","Back",0.5,true)
  59. if square1.Position == UDim2.new(0, -1000, 0, 0)then
  60. square1:TweenPosition(UDim2.new(0, 0, 0, 0),"In","Back",0.6,true)
  61. if square2.Position == UDim2.new(0, 1000, 0, 450)then
  62. square2:TweenPosition(UDim2.new(0, 0, 0, 450),"In","Back",0.6,true)
  63. if textbox.Position == UDim2.new(0, 0, 0, 500)then
  64. textbox:TweenPosition(UDim2.new(0, 0, 0, 125),"In","Sine",0.6,true)
  65. if name.Position == UDim2.new(0, 150, 0, -500)then
  66. name:TweenPosition(UDim2.new(0, 150, 0, 175),"In","Sine",0.6,true)
  67. end
  68. end
  69. end
  70. end
  71. end
  72. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement