Garry's Mod Wiki

GM:PropBreak

  GM:PropBreak( Player attacker, Entity prop )

Description

Called when a prop has been destroyed.

Arguments

1 Player attacker
The person who broke the prop.
2 Entity prop
The entity that has been broken by the attacker.

Example

This kills a player when a person breaks a prop (i.e. a wooden crate).

hook.Add("PropBreak", "PropVengeance", function(client, prop) client:Kill() end)