How to make a lift between two floors?

Sorry I meant “floors” when I said “levels” not an actual new map. But yes to create that you would just need to use a trigger box or some overlap event in the lift BP. When the player overlaps have it LERP between the current location and the other floor’s location. Then have a boolean variable that can tell which floor the lift is on. So after the initial overlap set the boolean to “Floor 2” for example. And if on floor 2, lerp between floor 2 and floor 1. If on floor 1 lerp between floor 1 and 2. The door animation or whatever would run off the same script you might need a second collision box. One outside the lift that opens the doors, one inside that closes the doors and moves the lift up/down.