ScreenToWorldPoint exclude objects or layers?

#Hello,
I need to know if you can make an object update it’s transform.position every frame according to Camera.ScreenToWorldPoint(), but have it exclude certain objects, or a layer, or if there is any better method.
__
What I’m trying to do is have an Animation Rig that makes the character’s head follow the cursor but the problem I’m facing is that ScreenToWorldPoint includes all objects in the camera’s view, so it just ends up on the back of the player’s head. Where I want it to be, is in front. On any object in front of the player, but not the player or any objects attached to it.
__
Is there some way I can get some help understanding this issue and work out a solution? Thanks!

ScreenToWorldPoint has nothing to do with actual scene geometry - it just takes a screen-space + depth vector and converts that point to world-space. I’m assuming you are using ScreenPointToRay in combination with a raycast, in which case you can supply a layermask as a parameter to the raycast and ignore your player’s layer;

//Set this to your player's layer
[SerializeField] private LayerMask m_LayerMask;

private Camera m_MainCamera;

private void Update ()
{
    if (m_MainCamera == null)
        m_MainCamera = Camera.main;

    //Get the world-space ray from mouse position
    Ray mouseRay = m_MainCamera.ScreenPointToRay (Input.mousePosition);
    //Perform the raycast using the inverted layermask (ignores the selected layers)
    if (Physics.Raycast (mouseRay, out RaycastHit hit, Mathf.Infinity, ~m_LayerMask)
    {
        //Just set this transform to look at the hit point
        transform.rotation = Quaternion.LookRotation (hit.point - transform.position);
    }
}