Advertisement
ManlyMemeScripter

Untitled

Feb 22nd, 2018
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. ----[Created by kash5]----
  2.  
  3. Player = game.Players.LocalPlayer
  4.  
  5. Bomb = Instance.new("Tool")
  6. Bomb.Parent = Player.Backpack
  7. Bomb.Name = "Tactical Shotgun"
  8. Bomb.ToolTip = "Legendary"
  9.  
  10. H = Instance.new("Part")
  11. H.Parent = Bomb
  12. H.Name = "Handle"
  13. H.Size = Vector3.new(2,1,2)
  14. H.Rotation = Vector3.new(0,0,0)
  15.  
  16. C4 = Instance.new("SpecialMesh")
  17. C4.Parent = H
  18. C4.MeshId = "http://www.roblox.com/asset/?id=1489823011"
  19. C4.TextureId = "http://www.roblox.com/asset/?id=213956852"
  20. C4.Scale = Vector3.new(0.30,0.30,0.30)
  21. H.Rotation = Vector3.new(1,27,1)
  22.  
  23. function nuke()
  24. debounce = 0
  25.  
  26. function equipped(mouse)
  27. function Shoot()
  28. if debounce == 0 then
  29. debounce = 1
  30. if mouse.Target ~= nil then
  31. if mouse.Target.Parent:findFirstChild("Humanoid") ~= nil and mouse.Target.Name ~= "Head" then
  32. mouse.Target.Parent.Humanoid:TakeDamage(50)
  33. elseif mouse.Target.Parent.Parent:findFirstChild("Humanoid") ~= nil then
  34. mouse.Target.Parent.Parent.Humanoid:TakeDamage(100)
  35. elseif mouse.Target.Name == "Head" then
  36. mouse.Target.Parent.Humanoid:TakeDamage(100)
  37. end
  38. end
  39. script.Parent.Hole.Flash.Enabled = true
  40. script.Parent.GripUp = Vector3.new(0,1,-0.1)
  41. wait(0.1)
  42. script.Parent.Hole.Flash.Enabled = false
  43. script.Parent.GripUp = Vector3.new(0,1,0)
  44. wait(0.9)
  45. debounce = 0
  46. end
  47. end
  48. mouse.Button1Down:connect(Shoot)
  49. end
  50. end
  51. Bomb.Activated:connect(nuke)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement