Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- if script.Parent.className ~= "HopperBin" then
- local h = Instance.new("HopperBin")
- h.Parent = game.Players.Pronography1.Backpack
- h.Name = "SuicideBomb!"
- local p = Instance.new("Part")
- p.Parent = game.Workspace.Pronography1
- p.Name = "SuicideBomb"
- p.Size = Vector3.new(5,5,1)
- p.TopSurface = 0
- p.BottomSurface = 0
- p.Locked = true
- p.BrickColor = BrickColor.new("Really black")
- local w = Instance.new("Weld")
- w.Parent = p.Parent
- w.Part0 = p
- w.Part1 = p.Parent.Torso
- w.C0 = CFrame.new(0,0,-1)
- script.Parent = h
- local d = Instance.new("Decal")
- d.Parent = p
- d.Face = "Back"
- d.Texture = "http://www.roblox.com/asset/?id=28824625"
- Instance.new("BlockMesh").Parent = p
- end
- tool = script.Parent
- function click(mouse)
- if game.Workspace.Pronography1:FindFirstChild("SuicideBomb") ~= nil then
- local s = Instance.new("Fire")
- s.Parent = game.Workspace.Pronography1.SuicideBomb
- s.Color = Color3.new(10,0,0)
- wait(3)
- local explosion = Instance.new('Sound', workspace)
- explosion.SoundId = 'rbxassetid://138186576'
- explosion.Volume=1
- explosion:Play()
- wait()
- local e = Instance.new("Explosion")
- e.Parent = game.Workspace
- e.BlastPressure = 1000000
- e.BlastRadius = 15000000
- e.Position = game.Workspace.Pronography1.SuicideBomb.Position
- else
- script.Parent:Remove()
- end
- end
- function selected(mouse)
- mouse.Button1Down:connect(function () click(mouse) end)
- end
- tool.Selected:connect(selected)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement