Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ----[Created by kash5]----
- Player = game.Players.LocalPlayer
- Bomb = Instance.new("Tool")
- Bomb.Parent = Player.Backpack
- Bomb.Name = "Tactical Shotgun"
- Bomb.ToolTip = "Legendary"
- H = Instance.new("Part")
- H.Parent = Bomb
- H.Name = "Handle"
- H.Size = Vector3.new(2,1,2)
- H.Rotation = Vector3.new(0,0,0)
- C4 = Instance.new("SpecialMesh")
- C4.Parent = H
- C4.MeshId = "http://www.roblox.com/asset/?id=1489823011"
- C4.TextureId = "http://www.roblox.com/asset/?id=213956852"
- C4.Scale = Vector3.new(0.30,0.30,0.30)
- H.Rotation = Vector3.new(1,27,1)
- function nuke()
- debounce = 0
- function equipped(mouse)
- function Shoot()
- if debounce == 0 then
- debounce = 1
- if mouse.Target ~= nil then
- if mouse.Target.Parent:findFirstChild("Humanoid") ~= nil and mouse.Target.Name ~= "Head" then
- mouse.Target.Parent.Humanoid:TakeDamage(50)
- elseif mouse.Target.Parent.Parent:findFirstChild("Humanoid") ~= nil then
- mouse.Target.Parent.Parent.Humanoid:TakeDamage(100)
- elseif mouse.Target.Name == "Head" then
- mouse.Target.Parent.Humanoid:TakeDamage(100)
- end
- end
- script.Parent.Hole.Flash.Enabled = true
- script.Parent.GripUp = Vector3.new(0,1,-0.1)
- wait(0.1)
- script.Parent.Hole.Flash.Enabled = false
- script.Parent.GripUp = Vector3.new(0,1,0)
- wait(0.9)
- debounce = 0
- end
- end
- mouse.Button1Down:connect(Shoot)
- end
- end
- Bomb.Activated:connect(nuke)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement