Ladder movement is clunky

As my first attempt at this I’m trying something simple, a Lode Runner clone. My main isue right now is that ladder climbing is a bit clunky. Is there a way to line up the player directly with the ladder when ‘up’ is pressed? I don’t mean so they cannot move off, just so as long as they are pressing up, they are automatically aligned with the ladder.

Hmm…probably an event with something like:

If player is climbing                               |  Set X position of Player = LadderObjectNameHere.X()
If player is in collision with LadderObjectNameHere |
If player.X() != LadderObjectNameHere.X()           |
Trigger once                                        | 
1 Like

Thank you, gonna give that a go.