If you are doing a raycast out from the camera but want to avoid the player collider without using layermasks how would you do it?
if (Physics.Raycast(player.head.transform.position, player.head.transform.forward, out hit, 5f)) {
I think combining the start position with the vector direction and extending it a bit would work but I’m not sure how to do it.