Advertisement
PR0J3CT11

Untitled

Aug 16th, 2019
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local explosion = Instance.new("Explosion", game.Workspace)
  2. explosion.Position = bomb.Position
  3. explosion.BlastRadius = explosionRadius
  4. explosion.BlastPressure = 1
  5. explosion.Visible = false
  6. explosion.Hit:Connect(function(hitPart)
  7. if hitPart.Anchored == false then
  8. hitPart:Destroy()
  9. end
  10. end)
  11. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement