Thank you so much! :awesome: You simply have to treat the conditions as mutually exclusive, meaning that only one of the movement directions can be active at any one time. The simplest way to achieve this is changing the if-statements into an if-elseif-chain, like the following: function love.update...
BRAND new to using Love2d (Literally started yesterday) Just make it work like Pokemon Red & Blue This is my current Code (Please don't make fun of me, I started yesterday) function love.load() player = {} player.x = 400 player.y = 300 player.speed = 5 player.size = 10 end function love.update(...