The principle is that there are two identical scenes at different heights. Whenever the player uses the ability, changing the player's Z-axis coordinate allows for seamless switching without loading times.
I created two platforms, one at Z-axis 5510 and the other at 15510.
In Unreal Engine, open Project Settings from the Edit menu in the top left corner. In the Engine section, under Input, add Action Mappings. I chose the E key on the keyboard as the interaction key. Since my game is called Multiverse Racer, I named this functionality "multiverse travel.”
I am using Unreal Engine's default first-person template. In the Content folder, open the Blueprints folder and select the FirstPersonCharacter Blueprint. Right-click and add the previously created "multiverse travel" action.
Get the player's Z-axis position and check if the Z-axis value is greater than 15510.
Use a Branch node to check the condition. If the Z-axis value is greater than 15510, reduce the player's Z-axis coordinate by 10,000 units.