Advertisement
Guest User

Untitled

a guest
May 21st, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. function e(p,y)
  2. local gui = Instance.new("ScreenGui")
  3. gui.DisplayOrder = 0
  4. gui.ResetOnSpawn = false
  5. local sound = Instance.new("Sound",gui)
  6. sound.SoundId = "rbxassetid://165224484"
  7. sound.Volume = 0
  8. sound.Looped = true
  9. aaaa.Level = 10
  10. local image = Instance.new("ImageLabel",gui)
  11. image.Image = "rbxassetid://1816207676"
  12. image.Size = UDim2.new(0,0,0,0)
  13. image.Position = UDim2.new(0.5,0,0.5,0)
  14. image.BackgroundTransparency = 1
  15. image.ImageColor3 = Color3.new(0,0,0)
  16. image.ZIndex = 100
  17. local background = Instance.new("Frame",gui)
  18. background.Size = UDim2.new(1,0,1,0)
  19. background.BackgroundColor3 = Color3.new()
  20. for _,v in pairs(game.Players:GetChildren()) do
  21. local gui2 = gui:Clone()
  22. local intense = 0
  23. local intense2 = 10
  24. gui2.Parent = v.PlayerGui
  25. gui2.Sound:Play()
  26. spawn(function()
  27. while wait(math.random() / 5) do
  28. gui2.Sound.Pitch = (math.random() * intense2) + 1.5
  29. gui2.Sound.Volume = intense * 6
  30. end
  31. end)
  32. spawn(function()
  33. while wait() do
  34. gui2.ImageLabel.ImageColor3 = Color3.fromHSV(math.random(),1,intense * (math.random() / 2))
  35. gui2.ImageLabel.Size = UDim2.new(0,intense * 800,0,intense * 800)
  36. gui2.ImageLabel.Position = UDim2.new(0.5,intense * -400,0.5,intense * -400)
  37. end
  38. end)
  39. spawn(function()
  40. intense = 1
  41. wait(0.2)
  42. --for i=1,30 do
  43. -- wait()
  44. -- intense = 1 - (i/30)
  45. --end
  46. --v:Kick("9840285")
  47. end)
  48. spawn(function()
  49. for i=0,300 do
  50. wait()
  51. intense2 = 10 - ((i/300) * 5.5)
  52. end
  53. end)
  54. if not y then
  55. spawn(function()
  56. wait(0.2)
  57. gui2:Destroy()
  58. end)
  59. else
  60. game.Debris:AddItem(gui2,20)
  61. end
  62. end
  63. end
  64. e(nil,true)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement