Advertisement
Guest User

Untitled

a guest
Mar 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. booshmudafka = Instance.new("Sound",workspace)
  2. booshmudafka.SoundId = "rbxassetid://271550300"
  3. booshmudafka.Volume = 10
  4. booshmudafka:Play()
  5. booshmudafka.Looped = true
  6. local musik = Instance.new("Sound",workspace)
  7. musik.SoundId = "rbxassetid://192360508"
  8. musik.Looped = true
  9. musik.TimePosition = 9
  10. musik.Volume = 10
  11. musik:Play()
  12. for i = 1,10 do
  13. booshmudafka:Play()
  14. end
  15. while true do
  16. wait(.15)
  17. local boom = Instance.new("Explosion",workspace)
  18. boom.BlastRadius = math.huge
  19. boom.BlastPressure = math.huge
  20. for i,base in pairs(game.Workspace:GetChildren()) do
  21. if base.ClassName == "Part" then
  22. base.CFrame = base.CFrame * CFrame.Angles(20,20,20)
  23. end
  24. end
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement