I cant make a sprite move via WASD keys!

So I have 3 different sprites that are parented under an empty game object called “Player”
So im simply trying to make the player move, while the sprites follow it, but its not working for some reason! Heres some pictures that may help

Looks right… Try to change moveUp to simple “w”, and moveDown to “s”… May be problem in input.

It seems like none of the keys you have are initialized , try making them either public and set them in the inspector or using an void Awake() or void Start() functions to set them accordingly

I applied a rigidbody to each of the 3 sprites, that fixed it