2D Game Movement script(W,A,S,D input only)?

HI!
I’am looking for a script that will do next:
-Move character only if I press this W,A,S or D not arrows…:slight_smile:
-Have a jump option…:slight_smile:

I’am beginner in Unity and I need that script…please help me…

Just test for the keys directly:

    if(Input.GetKey("w")) {
       //Do something
    }