Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local tool = Instance.new("Tool", owner.Backpack)
- local handle = Instance.new("Part", tool)
- handle.Name = "Handle"
- tool.Name = "Bomb"
- local sound1,sound2 = Instance.new("Sound", tool), Instance.new("Sound", tool)
- sound1.SoundId = "rbxasset://sounds//Rocket shot.wav"
- sound1.Name = "boom"
- sound2.Name = "tick"
- sound2.SoundId = "rbxassetid://11565378"
- tool.CanBeDropped = false
- local mesh = Instance.new("SpecialMesh", handle)
- mesh.MeshType = "Sphere"
- tool.GripPos = Vector3.new(0, 0, 0.819)
- handle.Size = Vector3.new(2.03, 2.33, 2.1)
- handle.Material = Enum.Material.Ice
- handle.Color = Color3.fromRGB(17, 17, 17)
- tool.Activated:Connect(function()
- local clone = handle:Clone()
- clone.Name = "Bomb"
- local sparkles = Instance.new("Sparkles", clone)
- sparkles.SparkleColor = Color3.fromRGB(255,0,0)
- clone.CanCollide = true
- handle.CanCollide = false
- clone.Parent = workspace
- clone.CFrame = CFrame.new(handle.Position)
- sound2:Play()
- clone.BrickColor = BrickColor.new("Toothpaste")
- wait(1)
- clone.BrickColor = BrickColor.new("Black")
- wait(1)
- clone.BrickColor = BrickColor.new("Toothpaste")
- wait(1)
- clone.BrickColor = BrickColor.new("Black")
- wait(1)
- clone.BrickColor = BrickColor.new("Toothpaste")
- sound2:Stop()
- sound1:Play()
- local boom = Instance.new("Explosion", clone)
- boom.Position = clone.Position
- boom.BlastRadius = 12
- boom.BlastPressure = 100000
- wait(0.2)
- clone:Destroy()
- handle.CanCollide = true
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement