The backflip is "possible." But wouldn't give you the results you want. If you wanted to try to make a backflip, you can sprite design the animation. After that, you can go to character commands, and then in the key you want to use to activate the backflip, you can create a few conditionals to see if the character is skidding, or something. If they equal to being true, then it'll run the backflip animation, and the backflip. But for the backflip itself, that's where it gets tricky. What you want to do, is change the character design to the flip animation, and then (this is where it's a "backflip") and then run x and y positioning commands in a looping timeline that change the characters position. This is also where a suggestion needs to be taken for a conditional to check and see if the character is facing a certain direction. The x and y positioning commands would depend on the characters direction. But this is where the entire backflip thing falls apart. Without that conditional, you're a sitting duck. But lets just pretend it did exist. If it did exist, then if the character is facing to the right, then the x and y positioning would be written like this inside of a looping timeline:
player 1 x-1
player 1 y -1
This would sent the player flying and going in a diagonal direction heading left. Now if the player was facing the other direction, you'd just change the x position to +1 instead of minus. That makes all the difference. But, if you let the timeline just loop over and over again, the player would just do it forever and die if it got out of the view. So, you'd need to create a variable that is checked in the timeline. If it equals to say...10. Then it'd stop the timeline if it equaled to 10. You'd have to add 1 each time the timeline is run to the variable. Once it reaches 10, (it can be any number really. The higher the number, the higher the player will fly.) you can allow the player to act normal. And in the land command prompt box, you can change the design back to the normal animations. 1 fallback is that if a ceiling is nearby, the character will end up right inside of the ceiling. This is just 1 method. You can try all kinds of things. Though this is kind of a sloppy tutorial, I hope it helps!