Hi how can I make it so that a collider ignores the mouse inputs and lets one behind it take the input?
You can use raycasting and pass it a layermask that includes only those layers you want the ray to hit. If both objects need to be in the same layer and you don’t want to change them, then you can also use RaycastAll to get ALL RC hits in a specified layermask (if you pass one).