Q&A for How to Make Your Character Move on Scratch

Return to Full Article

Search
Add New Question
  • Question
    How can I make your spirit character go up?
    PurpleFlower208
    Community Answer
    Your character can go up with this code: When green flag clicked forever if up arrow pressed change y by 10.
  • Question
    What if I want the user to be able to move it?
    PurpleFlower208
    Community Answer
    If you want the sprite to move, then use the following code: When green flag clicked forever if up arrow pressed change y by 10, if right arrow pressed change x by 10, if left arrow pressed change x by -10, and if down arrow pressed change y by -10. [If you want it to go faster or slower, change the numbers in code.]
  • Question
    How to sprite left to right?
    Biebie Heirou
    Community Answer
    "Change x by" . Use the change x by block to change the sprite horizontally.
  • Question
    In scratch, the character which moves on the stage is called what?
    Biebie Heirou
    Community Answer
    The character which moves on the stage is called a sprite. You can change the sprite's costume, and do what you want with it.
  • Question
    How do I make a sprite come down after a jump automatically?
    Vatsalya Gupta
    Community Answer
    If you want to make it feel like a jump from a higher place, you can use this code: my variable>jump then make a new variable my variable>hop and similarly do it with a name turn.Now, when green flag clicked then forever jump and add turn and then add hop.Now you can make a sprite come down after a jump automatically.
  • Question
    How do I make a character fall back down after jumping?
    Guinea Piggles
    Community Answer
    Make your character glide up, then glide down to its original position again.
  • Question
    My character did not move left when I pressed the left arrow key. Is there a way to fix this problem?
    Guinea Piggles
    Community Answer
    Your character shouldn't move left when you press the left arrow key anyway. You need to create a code to make them do this.
  • Question
    How can I make the batter sprite bat?
    Guinea Piggles
    Community Answer
    Take the bat sprite that Scratch has provided, then make a few minor edits (e.g. change the color, edit the shape).
  • Question
    How do I make the batter sprite swing? I don't know how to edit the color or change the shape in a question I saw recently that was the same, so can I get a code for that?
    Vernon Hulme
    Community Answer
    When (button) is pressed [or clicked depending on what you want to do], switch to costume (number). If you have multiple costumes, put a wait block (0.5 to 0.03 works best) between each one to make it fluid.
  • Question
    How do you make your character smoothly turn around? I don't want it to warp around or flash quickly.
    Vernon Hulme
    Community Answer
    Make very fast wait blocks (less than a second, 0.5 to 0.03) and create multiple costumes. You put a wait block between every costume with the same wait time.
  • Question
    My character went up when I pressed the right arrow a bunch of times. How do I fix this?
    Nguyễn Nam Khánh
    Community Answer
    Check the code, if the code is messed up, try to fix the code and it will probably work. You probably mixed up the change y to change x. If it doesn't help, press F5 to reload the page.
Ask a Question

      Return to Full Article