Advertisement
Guest User

wegwgwgwgwgwg

a guest
Feb 23rd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.90 KB | None | 0 0
  1. wait(2)
  2. local blurEffect = Instance.new("BlurEffect",game.Lighting)
  3. local runService = game:GetService("RunService").RenderStepped
  4. blurEffect.Size = 1
  5. for i = 1,48 do
  6. runService:Wait()
  7. blurEffect.Size = blurEffect.Size + 0.5
  8. end
  9. local screenGui = Instance.new("ScreenGui",game:service'Players'.LocalPlayer.PlayerGui)
  10. local imageLabel = Instance.new("ImageLabel",screenGui)
  11. imageLabel.Size = UDim2.new(0,150,0,150)
  12. imageLabel.Position = UDim2.new(-0.46,0,0.46,0)
  13. imageLabel.BorderSizePixel = 0
  14. imageLabel.BackgroundTransparency = 1
  15. imageLabel.Image = "rbxassetid://2886349679"
  16. function beat()
  17. imageLabel:TweenSize(UDim2.new(0,180,0,180), "Out", "Quad", 0.09)
  18. spawn(function()
  19. wait(.09)
  20. imageLabel:TweenSize(UDim2.new(0,150,0,150), "Out", "Quad", 0.09)
  21. end)
  22. end
  23. function twobeat()
  24. imageLabel:TweenSize(UDim2.new(0,180,0,180), "Out", "Quad", 0.06)
  25. spawn(function()
  26. wait(.10)
  27. imageLabel:TweenSize(UDim2.new(0,150,0,150), "Out", "Quad", 0.06)
  28. wait(.065)
  29. imageLabel:TweenSize(UDim2.new(0,180,0,180), "Out", "Quad", 0.06)
  30. wait(.06)
  31. imageLabel:TweenSize(UDim2.new(0,150,0,150), "Out", "Quad", 0.06)
  32. end)
  33. end
  34. local tweenService = game:GetService("TweenService")
  35. imageLabel:TweenPosition(UDim2.new(0.5,-(imageLabel.Size.X.Offset/2),0.5,-imageLabel.Size.Y.Offset/2), "Out", "Quad", 1)
  36. local sound = Instance.new("Sound",workspace)
  37. sound.SoundId = "rbxassetid://2886427938"
  38. spawn(function()
  39. wait(5)
  40. spawn(function()
  41. for i = 1,20 do
  42. runService:Wait()
  43. imageLabel.ImageTransparency = imageLabel.ImageTransparency + 0.05
  44. end
  45. end)
  46. spawn(function()
  47. for i = 1,24 do
  48. runService:Wait()
  49. blurEffect.Size = blurEffect.Size - 1
  50. end
  51. end)
  52. end)
  53. wait(1.1)
  54. sound:Play()
  55. wait(.2)
  56. beat()
  57. wait(1.55)
  58. twobeat()
  59. wait(0.91)
  60. beat()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement