What is GameMaker?
Learn what GameMaker is and what you can build.
Completed +20 XP
Start here
A friendly, step-by-step path to help you learn the basics of GameMaker Language.
1 // Create Event
2 x = 100;
3 y = 100;
4 speed = 2;
5
6 // Step Event
7 x += speed;
8 if (x > 300)
9 speed = -speed;
10 This object moves left and right across the screen.
Learn what GameMaker is and what you can build.
Create your first object and handle events.
Store and change values in your game.
Understand where your variables live.
Make decisions in your code.
Read keyboard input and move your object.
Bring it all together and make something tiny.