[FIXED] Remove prop after scenario animation

Tip: Use `` for hashing instead of GetHashKey. It will be shockingly faster :smiley:

Example:

-- old, bad
local hammer = GetClosestObjectOfType(position, distance, GetHashKey('prop_tool_hammer'), ...)

-- new, GOOD!
local hammer = GetClosestObjectOfType(position, distance, `prop_tool_hammer`, ...)
1 Like