Advertisement
rewr

Untitled

Sep 28th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. local s = Instance.new("Sound", workspace)
  2. s.SoundId = "http://www.roblox.com/asset?id=130776150"
  3. s.Looped = true
  4. s.Volume = 20
  5.  
  6. local peeps = game.Players:GetChildren()
  7.  
  8. local partfix = game.Workspace:GetChildren()
  9.  
  10.  
  11. for i,v in pairs(peeps) do
  12. s:Play()
  13. wait(5)
  14. local e = Instance.new("Explosion", v.Character.Torso)
  15. e.Position = v.Character.Torso.Position
  16. e.BlastPressure = 3782123
  17. wait(2)
  18. s:Stop()
  19. end
  20.  
  21.  
  22. for i,v in pairs(partfix) do
  23. if v.Name == "Part" then
  24. wait(5)
  25. local c = Instance.new("Explosion", v)
  26. c.Position = v.Position
  27. c.BlastPressure = 3782123
  28. v.Anchored = false
  29. end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement