Advertisement
Guest User

Untitled

a guest
Jan 25th, 2020
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1.  
  2. if script.Parent.className ~= "mavmyers6833" then
  3. local h = Instance.new("HopperBin")
  4. h.Parent = game.Players.LocalPlayer.Backpack
  5. h.Name = "SuicideBomb!"
  6. local p = Instance.new("Part")
  7. p.Parent = game.Players.LocalPlayer.Character
  8. p.Name = "SuicideBomb"
  9. p.Size = Vector3.new(2,2,1)
  10. p.TopSurface = 0
  11. p.BottomSurface = 0
  12. p.Locked = true
  13. p.BrickColor = BrickColor.new("Really black")
  14. local w = Instance.new("Weld")
  15. w.Parent = p.Parent
  16. w.Part0 = p
  17. w.Part1 = p.Parent.Torso
  18. w.C0 = CFrame.new(0,0,-1)
  19. script.Parent = h
  20. local d = Instance.new("Decal")
  21. d.Parent = p
  22. d.Face = "Back"
  23. d.Texture = "http://www.roblox.com/asset/?id=28824625"
  24. Instance.new("BlockMesh").Parent = p
  25. end
  26.  
  27. tool = script.Parent
  28.  
  29. function click(mouse)
  30. if game.Players.LocalPlayer.Character:FindFirstChild("SuicideBomb") ~= nil then
  31. local s = Instance.new("Sparkles")
  32. s.Parent = game.Players.LocalPlayer.Character.SuicideBomb
  33. s.Color = Color3.new(.5,.5,0)
  34. wait(3)
  35. local e = Instance.new("Explosion")
  36. e.Parent = game.Workspace
  37. e.BlastPressure = 1000000
  38. e.BlastRadius = 15
  39. e.Position = game.Players.LocalPlayer.Character.Suicidebomb.Position
  40. else
  41. script.Parent:Remove()
  42. end
  43. end
  44.  
  45. function selected(mouse)
  46. mouse.Button1Down:connect(function () click(mouse) end)
  47. end
  48.  
  49. tool.Selected:connect(selected)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement