help
no move person
We cannot help you without provided context.
Support does not read you mind, nobody does. If you want people to actually help you, you need to provide informations so that people without context can actually help you situation.
The best I can imagine right now, is that you code is wrong (obviously). Check that everything accesses variables correctly, in the update()
function and draw()
function.
Did you replace the numbers with variables in the function that draws your sprite?
Is the keyboard check placed in the update
function?
Does the left check look something like this:
if keyboard.LEFT then
x += 2 // Make sure to change it to your case
end