---Checks if the player can slash tires ---@return boolean canPlayerSlash ---@return string|nil reason nil if canPlayerSlash is true function CanPlayerSlashTires() local playerState = LocalPlayer.state if playerState.isDead then return false, 'is_dead' end if playerState.isCuffed then return false, 'is_handcuffed' end if playerState.invBusy or playerState.isEscorted then return false, 'generic_fail_reason' end return true end