Tip: Use `` for hashing instead of GetHashKey. It will be shockingly faster
Example:
-- old, bad
local hammer = GetClosestObjectOfType(position, distance, GetHashKey('prop_tool_hammer'), ...)
-- new, GOOD!
local hammer = GetClosestObjectOfType(position, distance, `prop_tool_hammer`, ...)