Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local explosion = Instance.new("Explosion", game.Workspace)
- explosion.Position = bomb.Position
- explosion.BlastRadius = explosionRadius
- explosion.BlastPressure = 1
- explosion.Visible = false
- explosion.Hit:Connect(function(hitPart)
- if hitPart.Anchored == false then
- hitPart:Destroy()
- end
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement