IS this possible to stay GUIs while translating camera

Hi, I am trying to implement sliding effect between screens. I have 2 screens ScreenA, ScreenB in one unity scene, on pressing a gui button camera translates to that screen A to B and vice versa. The problem I am facing is GUI always comes on screen that is when on/moving from screens I am having Screen guis translating with my camera. I know guis use screen points, so screen changes gui changes to, but Is there any way I can stay guis to not change with camera translation ? I ll prefer to use gui button instead of planes gameobject. Or might be is this possible to have sliding effect between two seperate unity scenes.
Thanks

GUI elements are always in Screen Space coordinates. If you want some scrolling there, you would need to make some (possibly extremely complicated) calculations to counter the camera’s movement (to make it not noticeable is probably impossible, if the camera’s movement is not extremely simple and uniform). It would be way easier to simply use planes.