How can I simply change the sidescroller BP movement speed?

Title.

You can open your player blueprint and under the Defaults panel change the “Max Walk Speed” value.

Within the Character BP there is a MovementComponent. It has a variable called ‘MaxWalkSpeed’. You can change it to increase or decrease the max velocity of your character.

You can either set it in defaults tab. Or could control it through blueprint (for instance you want your character to sprint when a certain key is pressed.)

Thank you very much :slight_smile:

Ok now I got both of them working. This is really helpful for a noob like me to get started. thanks