Advertisement
Gomlsauresrex

Suicide Bomber UPD (Now Destroys Objects)

Mar 18th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. Suicide Bomber UPD
  2. --By Gomlsauresrex
  3.  
  4. local it=Instance
  5. local player=game.Players.LocalPlayer
  6. local c=it.new(
  7. "Part",
  8. workspace
  9. )
  10. local weld=function(a, b)
  11. local it=Instance
  12. local weld=it.new(
  13. "Weld"
  14. )
  15. weld.Part0 = a
  16. weld.Part1 = b
  17. weld.Parent = a
  18. weld.C0 = CFrame.new(0, 0, 1)
  19. end
  20. repeat wait() until player.Character
  21. weld(
  22. player.Character:WaitForChild("Torso"),
  23. c
  24. )
  25. wait(5)
  26. local pointlight=it.new(
  27. "PointLight",
  28. c
  29. )
  30. pointlight.Color=Color3.new(255/255, 0/255, 0/255)
  31. for i=5,0,-1 do
  32. pointlight.Enabled=true
  33. wait(1)
  34. pointlight.Enabled=false
  35. wait(1)
  36. end
  37. local explosion=Instance.new("Explosion", c)
  38. explosion.Position=c.Position
  39. local sound=it.new(
  40. "Sound",
  41. workspace
  42. )
  43. explosion.Hit:Connect(function(hitPart)
  44. if hitPart.className=="Part" or hitPart.className=="BasePart" then
  45. hitPart.Anchored=false
  46. end
  47. end)
  48. sound.SoundId="rbxassetid://11984351"
  49. sound:Play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement