Tutorial series: 1. Base game: th-cam.com/video/nwlvT-L9vFg/w-d-xo.html 2. Main Menu: th-cam.com/video/Us5GSddVedY/w-d-xo.html 3. Music and SFX: th-cam.com/video/NGNJWpiVS1M/w-d-xo.html 4. Power Ups: th-cam.com/video/xeXsRRYSQ78/w-d-xo.html
Tip: If you want to add WASD movement add the code: or keyboard_check(ord("W")) to the end of each if statement in the movement, replacing W with either W, A, S or D
This was so simple and straightforward, I can’t thank you enough for making this! I’ve officially made my very first game, and now I’m gonna customize it and add my own sprites and a menu, this was so helpful and educational, thanks again!
The way you use creative editing and effects in your video to draw attention to and accentuate the points you make, are so sensitively done! Masterful work, thank you!
Wow! this is the best totorial I have ever seen, it explains how to do stuff step by step and tells us why he did what he did. I hope Gamemaker make more tutorials in the futrue.
If anyone else was following this guide and gets an error message after destroying a small rock, I found a fix! At 11:30 in his If Variable, he sets the variable to "instance_number(obj_rock)" which doesn't exist. Changing it to "instance_number(obj_rock_big)" fixed it for me.
This happened due to anxiety, because if we pay attention, when he names the created objects, there is no "obj_rock_big" , as he got confused with the names of the Sprites - Calmly rewinding the video, I realized the reasons why the variables were not accepted. .
This took me back straight into elementary school when I was building this on my own in GameMaker 6.1 free version, without an internet connection and only the built-in documentation in the help file. With zero coding knowledge, of course. I've built so many small games back then. Now, as a developer, I can finally come back to this and try building something more palpable.
This was nice. At first I was a bit meh because it wasn't as detailed as the original space rocks tutorial. But it wasn't meant to be. As someone's first exposure to gamemaker and something to build confidence, this is the perfect lesson to get something together and working in under a half hour. Great job man.
I messed around with different software and made game with each of them but I think this is the one I'm going with, you guys have really done something incredible with visual code.
for the score system 15:40: make sure you pay attention to lower case or upper case, my files had a "Obj_game" instead of all-lower-case " obj_game" which was enough to cause a problem. a little hint :)
I thought this was a really great intro tutorial for GM. I personally found the web article easier to follow at my own pace, but I'm sure other people prefer the video!
7:14 Little tip for anyone that wants to create a missile or arrow and have it rotate properly when fired: On Create tab under obj_bullet add a third variable with name: image_angle value: obj_player.image_angle. This rotates the sprite itself to match the player when fired otherwise your missiles will fly out sideways. If your player sprite is drawn facing right and missile is drawn facing up, you'll have to offset the angle with rotate instance. Alternatively edit all your sprites to have a consistent facing so you don't need add the extra step.
The score system makes my rock code send an error, so I had to remove it, but other than that, everything works. your tutorial was very clear and straightforward, and I like that you explained *why* we were adding certain parts instead of just telling us to do it. That way, I know what I'm adding and why I'm adding it. You're an amazing teacher. Thank you.
Excellent introduction to GM, one idea for new makers is to add a Hyper Space button to randomly move the ship to a diffrent location. So adda new key press event and random change the ships X and y value based on the rooms max x and y.
today i downloaded the GameMaker. And this was the first tutorial i've found. And made a game the day i just downloaded it! thanks for this amazing video!!
Thank you for this, first gamemaker tutorial I have ever completed! Very nice. Even realized I needed to copy paste that one line of code before you said I needed to.
Pretty good tutorial. The double sided visuals for both of the coding styles is impressive. I coded something and actually understand some of what I've done! The only thing I don't understand is why my points won't go up. I've checked the code many times and just can't figure it out.
Thank you so much for making this video, this must have been made after an update of some kind because back then motion add wasn't a thing, it didn't exist, the new way of coding all this is so much easier than a 5 part series like I had to watch before all these updates, this video is great.
would like to know how to create more levels, showing completing level 1 then going to level 2 and making the rocks and enemies harder. But it is a good start to giving basics
Awesome video, thank you very much! If someone is interested, you can get random rocks rotation by adding a new variable in the obj_rock "create" event : _speed_rotation = random(3) Then, modify the "image_angle" in the step event to "image_angle += _speed_rotation;" You will have rocks rotating with a variable speed, up to 3/frame :)
@@iamaguy87 Check the "Step" event for obj_rock; did you assign the variable "image_angle" or did you accidentally assign it to "image_alpha"? Autocomplete error that's easy to make. Edit: Another possibility is that you didn't check "Relative" in the "image_angle" assign variable within the obj_rock "Step" event.
Man this was so helpful. You can be sure I will review this video if I get stuck somewhere. I am really bad with names I do understand variables tho as I am not a coder but I can read code. Edit: I actually took it a little further and gave sound effects to my bullets. Well It's a shotgun sound but hell I am from South Africa, Shotguns is our answer for everything 😀
Great Tutorial. But guys just a tip make sure you have everything spelled correctly. sat there for 15 minutes wondering why i was getting an error. come to find out i spelled game wrong when naming my obj_game object.
I think its weird that you play with the arrows and shoot with mouse, maybe change that cause it is more comfortable/nice to play with. so here is the code for WAD. if keyboard_check(ord("W")) { motion_add(image_angle, 0.1); } if keyboard_check(ord("A")) { image_angle += 4; } if keyboard_check(ord("D")) { image_angle -= 4; } here I changed the arrows for WAD for people that want to change it!
Good idea, the only down-side I noticed with this is that you can't perform multiple strings at a single time. Meaning, as you turn left while moving forward, you cannot let go of "A" and press "D" to turn right without letting go of the forward movement key "W" (and vice-versa). Basically, using string movement code like this makes the movement feel a little less polished and refined. But it can definitely work if anyone would much rather use WAD movement instead of the arrow keys.
At first, my the score system didn't work for me. This was because I had named the variable 'score' and not 'points' like you did in the video. So I renamed the variable to 'points', and it worked. I'm just confused as to why this was - surely the name of the variable doesn't matter?
hello! thanks for the great tutorial, but i have a problem. When i shoot at the small rocks my game crashes, how do i fix it (i did the same way as you imo)
I had the same problem! Here's the fix - In the obj_rock_big collision event with obj_bullet, under the first Else, Set Sprite needs to be "spr_rock_big" In this video, he labelled it "spr_rock" which was a mistake, so if you copied him word for word, it crashes.
Hello, Your tutorial is really amazing, I have managed to make the game using both GML visual and GML code. I have hit a small problem though with the GML code version of the game. If you target all the big rocks and avoid the small ones, the small rocks float off my screen and they do not respawn. Do I have to add anything to wrap the small rocks around the room and to get infinite rocks? (please see code for Rock below) 1 Obj_Time. Points += 50 2 3 instance_destroy(other) 4 5 effect_create_above(ef_explosion, x, y, 1, c_white) 6 7 direction = random(360) 8 9 if sprite_index == spr_rock_big 10 { 11 sprite_index = spr_rock_small 12 instance_copy(true); 13 } 14 else if instance_number(Obj_Rock) < 12 15 { 16 sprite_index = spr_rock_big 17 x = -100 18 } 19 else 20 { 21 instance_destroy() 22 }
For some reason I don't have the template for Space Rocks on my version of GameMaker, is there a place to download it from? I recently installed the newest version of GM, don't know if that removed it and the other templates?
Hi, you should be able to get it from the start screen, after you hit "New". The template screen may show "User Templates" in a drop down menu, so make sure you change that to "All Templates" or "Official Templates". Make sure you are connected to the internet as well.
for some reason when I did the instance_destroy from the player it was giving me an error. so instead, I made it so that the rock would do the destroying of the player using instance_destroy(other) and made the game object call the alarm from the rock object instance instead. Otherwise worked great! Thank you for this-- very helpful!
I wanna make it so that the ship has autofire. I know you start with "if key down" so that bullets constantly shoot when the key is down, but it shoots at lightspeed. How do I set the speed to how often this code runs?
when i run the game after adding the first several events, my player isnt moving. ive proof read the visual code to make sure there are no errors. please help (:
In the tutorial when we want to limit the amount of rocks that can appear on the screen when the bullet collides with the large rock, in the "if" you write obj_rock, but we never created the obj_rock in the tutorial, maybe I didn't see it correctly but I wanted to know how to do it
This is cool, thanks for this. How do I create an "or" for the movement, so I can use "up" or "W" to move? I wanted to add WASD controls, and the only way I could was by adding all the same commands but for the WASD, I then ran into the issue that if you pressed both W and UP at the same time or w/e other key, it would double the move speed. I only wanted to be able to use either key without adding more speed. Also, how to I add a hard stop so that I can stop the player movement? I added S and Down at -.1 so that it would slow and you could kind of stop, but it was not like a break and stand in place like I wanted.
excellent tutorial, very easy to follow and extremely helpful. one question, are we able to 'refine' the hitbox of the player and/or the rocks? i noticed there is a small 'gap' that triggers the collision event even though the two objects arent necessarily 'touching' yet. a small nitpick but i feel like itd help player immersion. thanks!
Hey! You can modify the mask of your ship and rocks within their sprite editors. So e.g. double click on the player sprite and its sprite editor will open. Then expand the "Collision Mask" menu and change the Mode to Manual. Now you can just its mask in the canvas :)
I followed this with the most recent version of gamemaker, and it doesn't work when I try to run it. it just shows a blank screen, not sure why or what i could have done wrong
It keeps giving me a error message when I try to shoot a big rock the error is telling me that there is a problem with the instance copy part anf i don't know how to fix it
awesome tutorial! very easy to follow. But some practices in this tutorial don't feel right for much larger projects with hundreds/thousands of sprites. Does gamemaker have a tutorial for managing that kind of projects?
There are older tutorials, like the series Little Town. We have stopped promoting them because some parts of the tutorial series don't work or aren't completely clear with all the more recent GM updates. They are still available to try out though if you're keen to: gamemaker.io/en/tutorials/little-town-gamemaker-tutorial Another option would be to check out some of Shaun Spalding's tutorials :)
The best place to go for help is the GM Community Forum or Discord. Best to post a screenshot with your code so it's easy for people to help you Forum: forum.gamemaker.io/index.php Discord: discord.com/invite/gamemaker
Thanks to this i made a very simple firing game where u move the pistol up and down and robbers come robbers have health and if u shoot them 2 times u get points but there is cops and if u shoot them you lose points and i have a second mode when you reach i think 100 points where its automatic also the gun can reload the more points the more the capacity its very cool but sadly my pc is broken.....😢and i hate my life
The best place to go is the GM community forum or Discord. Try posting a picture of your code to make it easy for people to help you Forum: forum.gamemaker.io/index.php Discord: discord.com/invite/gamemaker
Tutorial series:
1. Base game: th-cam.com/video/nwlvT-L9vFg/w-d-xo.html
2. Main Menu: th-cam.com/video/Us5GSddVedY/w-d-xo.html
3. Music and SFX: th-cam.com/video/NGNJWpiVS1M/w-d-xo.html
4. Power Ups: th-cam.com/video/xeXsRRYSQ78/w-d-xo.html
Tip: If you want to add WASD movement add the code: or keyboard_check(ord("W")) to the end of each if statement in the movement, replacing W with either W, A, S or D
what is a relative@@Boiabba
@@your_hyeong what do you mean?
i love you bro ive been looking for how to do this@@Boiabba
Add a game over screen with the points and Restart button.
This was so simple and straightforward, I can’t thank you enough for making this! I’ve officially made my very first game, and now I’m gonna customize it and add my own sprites and a menu, this was so helpful and educational, thanks again!
true
The way you use creative editing and effects in your video to draw attention to and accentuate the points you make, are so sensitively done! Masterful work, thank you!
"Ship goes brr" is an amazing game name
Wow! this is the best totorial I have ever seen, it explains how to do stuff step by step and tells us why he did what he did. I hope Gamemaker make more tutorials in the futrue.
If anyone else was following this guide and gets an error message after destroying a small rock, I found a fix! At 11:30 in his If Variable, he sets the variable to "instance_number(obj_rock)" which doesn't exist. Changing it to "instance_number(obj_rock_big)" fixed it for me.
Thank you, it worked for me as well!!!!
This happened due to anxiety, because if we pay attention, when he names the created objects, there is no "obj_rock_big" , as he got confused with the names of the Sprites - Calmly rewinding the video, I realized the reasons why the variables were not accepted. .
thats true becasue i noticed that is well@@ByAnakin
thank you so much i was going insane bruh
I knew I should have checked comments, I was pulling my freaking hair out over this!
This took me back straight into elementary school when I was building this on my own in GameMaker 6.1 free version, without an internet connection and only the built-in documentation in the help file. With zero coding knowledge, of course. I've built so many small games back then. Now, as a developer, I can finally come back to this and try building something more palpable.
This was nice. At first I was a bit meh because it wasn't as detailed as the original space rocks tutorial. But it wasn't meant to be. As someone's first exposure to gamemaker and something to build confidence, this is the perfect lesson to get something together and working in under a half hour. Great job man.
oh wow. gml visual AND gml code at the same time 😀
and very good explanations that go with it. thanks!🙏
Thanks for a fast yet very clear explanation. Good to see both sets of code. Much appreciated 2 years after you made it!
I messed around with different software and made game with each of them but I think this is the one I'm going with, you guys have really done something incredible with visual code.
i just want to say you are a great teacher , ive been looking for a good tutorial to learn this engine and you give both coding options helps a lot
for the score system 15:40:
make sure you pay attention to lower case or upper case, my files had a "Obj_game" instead of all-lower-case " obj_game" which was enough to cause a problem.
a little hint :)
This instructor is great! Very understandable for a complete beginner!
He is!
Watching the visual scripting in the left and the GML code in the right at the same time is a brilliant idea! Make more like these!!
:))
The latest Bounce or Break Make a Game series is the same :). You can find it on our channel home page or through a search :)
I thought this was a really great intro tutorial for GM. I personally found the web article easier to follow at my own pace, but I'm sure other people prefer the video!
i love when there is a text that says wait rock, pls come back don't leave
7:14 Little tip for anyone that wants to create a missile or arrow and have it rotate properly when fired: On Create tab under obj_bullet add a third variable with name: image_angle value: obj_player.image_angle. This rotates the sprite itself to match the player when fired otherwise your missiles will fly out sideways. If your player sprite is drawn facing right and missile is drawn facing up, you'll have to offset the angle with rotate instance. Alternatively edit all your sprites to have a consistent facing so you don't need add the extra step.
this video rules and the tutorial and teaching style is incredibly straightforward, but not hand holdy, and encouraging. thank you!!
Thanks for sharing.... these are the projects I enjoy learning with my kids.
The score system makes my rock code send an error, so I had to remove it, but other than that, everything works. your tutorial was very clear and straightforward, and I like that you explained *why* we were adding certain parts instead of just telling us to do it. That way, I know what I'm adding and why I'm adding it. You're an amazing teacher. Thank you.
So glad you found it useful! Thanks Travelervat. Also, feedback about why is noted :)
No problem! Couldn’t agree more!! :D
I found that in my version of GameMaker the function is not called Point, but Score. Hope this helps
\
Oh, thank you sm!! Next time I open GameMaker, I'll look for that!!
Excellent introduction to GM, one idea for new makers is to add a Hyper Space button to randomly move the ship to a diffrent location. So adda new key press event and random change the ships X and y value based on the rooms max x and y.
awesome that alarm function for sending signals to game restart is awesome!!!
today i downloaded the GameMaker. And this was the first tutorial i've found. And made a game the day i just downloaded it! thanks for this amazing video!!
Amazing :)! Congrats getting your first project under your belt
Thank you for this, first gamemaker tutorial I have ever completed! Very nice. Even realized I needed to copy paste that one line of code before you said I needed to.
Pretty good tutorial. The double sided visuals for both of the coding styles is impressive. I coded something and actually understand some of what I've done! The only thing I don't understand is why my points won't go up. I've checked the code many times and just can't figure it out.
i have the same problem have you figured it out please tell me then
in obj_rock have you checked the "relative" box for the assign variable?
@@helloimxxile969 No, I’ll have to try that!
Thank you so much for making this video, this must have been made after an update of some kind because back then motion add wasn't a thing, it didn't exist, the new way of coding all this is so much easier than a 5 part series like I had to watch before all these updates, this video is great.
Glad you enjoyed it! Indeed the Add Motion action is new and was added to make it easier to make movement like this.
Happy GameMaking!
Hi :)
Thanks for finally posting bite sized tutorials. I am saving this for later to treat myself into on watching later. :D
this was amazing, I think I missed a bit bc I saw no way to go back, but this tutorial made it easy to figure out how to do backwards movement
Glad it helped!
Thank you. I haven't program since high school. Started playing games lately decided to learn game making.
That had INSANLY good directions! Thank you soo much for making this video, as it'll help me make other games in GameMaker Studio!
Try keep pressing W till you go faster than The Flash, took me some time to fix that
I know that bug.@@IamTooLateForThis
That was a really enjoyable simple tutorial --- Super stoked to start working on these more!
Let's goo!
Just by this tutorial alone, I definitely am looking forward to getting started with this! Thank you!
♥
Thank for that bud, got my first jump in the Gamemaker.
would like to know how to create more levels, showing completing level 1 then going to level 2 and making the rocks and enemies harder. But it is a good start to giving basics
Exactly what a beginner needs to get started, Thank you x
wow, great tutorial, perfect for beginners. Explained well.
Awesome video, thank you very much! If someone is interested, you can get random rocks rotation by adding a new variable in the obj_rock "create" event : _speed_rotation = random(3)
Then, modify the "image_angle" in the step event to "image_angle += _speed_rotation;"
You will have rocks rotating with a variable speed, up to 3/frame :)
I'm new to this. How are you doing this, step by step? I followed all the video instructions and my rocks don't spin.
@@iamaguy87 Check the "Step" event for obj_rock; did you assign the variable "image_angle" or did you accidentally assign it to "image_alpha"? Autocomplete error that's easy to make. Edit: Another possibility is that you didn't check "Relative" in the "image_angle" assign variable within the obj_rock "Step" event.
this has been my first ever game!
Matharoo, you make good tutorials, your editing and style makes it easy to follow.
very concise and understandable! I followed along and everything made perfect sense. Thanks! See you in the next video
jfdlkfjdklajfdlkajfldjfdjljfdlajfdljalkfjdlsajflk;djlkf;jldksjaf;lkdjaf;lda
jfdl;asjfldkajf jdlafjdls fjldajfkldja;lfa
Man this was so helpful. You can be sure I will review this video if I get stuck somewhere. I am really bad with names I do understand variables tho as I am not a coder but I can read code.
Edit: I actually took it a little further and gave sound effects to my bullets. Well It's a shotgun sound but hell I am from South Africa, Shotguns is our answer for everything 😀
bro your videos are really really useful😉😉
sorry for being agressive the first time this tutoriel is actualy pretty good and helped a lot
great breakdown into small steps.
This tutorial was great! Thank you for helping me make my first video game!
Love this!
Great Tutorial. But guys just a tip make sure you have everything spelled correctly. sat there for 15 minutes wondering why i was getting an error. come to find out i spelled game wrong when naming my obj_game object.
i replaced the rocks with THE ROCK and when they are hit they turn into kevin hart
I think its weird that you play with the arrows and shoot with mouse, maybe change that cause it is more comfortable/nice to play with. so here is the code for WAD.
if keyboard_check(ord("W"))
{
motion_add(image_angle, 0.1);
}
if keyboard_check(ord("A"))
{
image_angle += 4;
}
if keyboard_check(ord("D"))
{
image_angle -= 4;
}
here I changed the arrows for WAD for people that want to change it!
Good idea, the only down-side I noticed with this is that you can't perform multiple strings at a single time. Meaning, as you turn left while moving forward, you cannot let go of "A" and press "D" to turn right without letting go of the forward movement key "W" (and vice-versa).
Basically, using string movement code like this makes the movement feel a little less polished and refined. But it can definitely work if anyone would much rather use WAD movement instead of the arrow keys.
W
Thanks for this great tutorial! GML looks like a really cool language!
At first, my the score system didn't work for me. This was because I had named the variable 'score' and not 'points' like you did in the video. So I renamed the variable to 'points', and it worked. I'm just confused as to why this was - surely the name of the variable doesn't matter?
Thank you so much I'm new in gms2
Nice tutorial, would definitely recommend including shortcuts alongside gui as it speeds up your life 350% more
Who is this guy? I need to subscribe on his channel because he's a good teacher.
This is Gurpreet, he's GameMaker's tech writer and he makes a lot of our video inhouse tutorials!
hello! thanks for the great tutorial, but i have a problem. When i shoot at the small rocks my game crashes, how do i fix it (i did the same way as you imo)
I had the same problem! Here's the fix - In the obj_rock_big collision event with obj_bullet, under the first Else, Set Sprite needs to be "spr_rock_big" In this video, he labelled it "spr_rock" which was a mistake, so if you copied him word for word, it crashes.
hey you made wordle in an hour so cool!
That was surprisingly easy 👍
verry helpful to learn how to use this program
6:20 shooting
8:12 moving rocks
9:28 destroying rocks
14:19 score system
Simple and effective. Many thanks (:
wth this is way better then unreal visual code!!
Amazing tutorial
Hello,
Your tutorial is really amazing, I have managed to make the game using both GML visual and GML code.
I have hit a small problem though with the GML code version of the game. If you target all the big rocks and avoid the small ones, the small rocks float off my screen and they do not respawn. Do I have to add anything to wrap the small rocks around the room and to get infinite rocks? (please see code for Rock below)
1 Obj_Time. Points += 50
2
3 instance_destroy(other)
4
5 effect_create_above(ef_explosion, x, y, 1, c_white)
6
7 direction = random(360)
8
9 if sprite_index == spr_rock_big
10 {
11 sprite_index = spr_rock_small
12 instance_copy(true);
13 }
14 else if instance_number(Obj_Rock) < 12
15 {
16 sprite_index = spr_rock_big
17 x = -100
18 }
19 else
20 {
21 instance_destroy()
22 }
I'm able to watch this entire video while my computer is loading.
Thanks ! It's a great tutorial !
You're welcome!
what an epic video. super entertaining and educative. Thank you!
Great! So happy you enjoyed it
For some reason I don't have the template for Space Rocks on my version of GameMaker, is there a place to download it from? I recently installed the newest version of GM, don't know if that removed it and the other templates?
Hi, you should be able to get it from the start screen, after you hit "New". The template screen may show "User Templates" in a drop down menu, so make sure you change that to "All Templates" or "Official Templates". Make sure you are connected to the internet as well.
@@GameMakerEngine thanks, don't know what happened (I did cycle through the different options), but they're showing now.
Yo thank you so much man... appreciate it
for some reason when I did the instance_destroy from the player it was giving me an error. so instead, I made it so that the rock would do the destroying of the player using instance_destroy(other) and made the game object call the alarm from the rock object instance instead. Otherwise worked great! Thank you for this-- very helpful!
I wanna make it so that the ship has autofire. I know you start with "if key down" so that bullets constantly shoot when the key is down, but it shoots at lightspeed. How do I set the speed to how often this code runs?
i have 0 experience but thanks for the tutorial as i have never coded before
when i run the game after adding the first several events, my player isnt moving. ive proof read the visual code to make sure there are no errors. please help (:
Really cool!
This guy has great tutorials on Udemy iirc
In the tutorial when we want to limit the amount of rocks that can appear on the screen when the bullet collides with the large rock, in the "if" you write obj_rock, but we never created the obj_rock in the tutorial, maybe I didn't see it correctly but I wanted to know how to do it
This is cool, thanks for this.
How do I create an "or" for the movement, so I can use "up" or "W" to move? I wanted to add WASD controls, and the only way I could was by adding all the same commands but for the WASD, I then ran into the issue that if you pressed both W and UP at the same time or w/e other key, it would double the move speed. I only wanted to be able to use either key without adding more speed.
Also, how to I add a hard stop so that I can stop the player movement? I added S and Down at -.1 so that it would slow and you could kind of stop, but it was not like a break and stand in place like I wanted.
excellent tutorial, very easy to follow and extremely helpful. one question, are we able to 'refine' the hitbox of the player and/or the rocks? i noticed there is a small 'gap' that triggers the collision event even though the two objects arent necessarily 'touching' yet. a small nitpick but i feel like itd help player immersion. thanks!
Hey! You can modify the mask of your ship and rocks within their sprite editors.
So e.g. double click on the player sprite and its sprite editor will open. Then expand the "Collision Mask" menu and change the Mode to Manual. Now you can just its mask in the canvas :)
ship goes brrr
brrrrr
I followed this with the most recent version of gamemaker, and it doesn't work when I try to run it. it just shows a blank screen, not sure why or what i could have done wrong
yeah i got through the first 14 lines of code and the game wont even open for me lol
@@uga31333 k so now it works i don't remember what i did but maybe you haven't put your object into the room.
@@mynameisnotcool8426 yeah no its definetly there. the game doesnt even open
Please do this for the Heroes Trial tutorial too.
It keeps giving me a error message when I try to shoot a big rock the error is telling me that there is a problem with the instance copy part anf i don't know how to fix it
I love the obj rock
What about obj playar
sui
I have a problem, I don't know how to enter there, could you give me your opinion?
he literally named his project "ship go brrrr"
I have an issue at 7:40. I keep getting an error message after running the game
awesome tutorial! very easy to follow.
But some practices in this tutorial don't feel right for much larger projects with hundreds/thousands of sprites.
Does gamemaker have a tutorial for managing that kind of projects?
There are older tutorials, like the series Little Town.
We have stopped promoting them because some parts of the tutorial series don't work or aren't completely clear with all the more recent GM updates.
They are still available to try out though if you're keen to: gamemaker.io/en/tutorials/little-town-gamemaker-tutorial
Another option would be to check out some of Shaun Spalding's tutorials :)
wow nice tutorial to start!!!
I've checked and double checked and I can't get my rocks to rotate, awesome tutorial but its driving me bonkers that my rocks don't spin
The best place to go for help is the GM Community Forum or Discord. Best to post a screenshot with your code so it's easy for people to help you
Forum: forum.gamemaker.io/index.php
Discord: discord.com/invite/gamemaker
I appreciate the "ship go brr" title
Thanks to this i made a very simple firing game where u move the pistol up and down and robbers come robbers have health and if u shoot them 2 times u get points but there is cops and if u shoot them you lose points and i have a second mode when you reach i think 100 points where its automatic also the gun can reload the more points the more the capacity its very cool but sadly my pc is broken.....😢and i hate my life
i love messing around with the sprite
"ship go brr" AMAZING
How would i make it so when you kill a certain amount of enemies you go to another level, like a different room thats slightly harder?
The best place to go for help is the GM Community Forum or Discord
Forum: forum.gamemaker.io/index.php
Discord: discord.com/invite/gamemaker
So much fun! Thank you!
When you change the sprite rocks into images of your friends faces, it can get even better.
why is this shit so fucking hard for me no matter how much i follow the video all that comes up is errors
Instead of making it shoot with the left click, what do you need to write to make it shoot with the tab key?
my movement is not smooth for some reason, i have to press the key over and over, instead of just holding it down
The best place to go is the GM community forum or Discord. Try posting a picture of your code to make it easy for people to help you
Forum: forum.gamemaker.io/index.php
Discord: discord.com/invite/gamemaker
its really straightforward but he goes so fast
Question, if you still answer them.
My ship glides even if I release the key. Is there any way I can fix that?
every time i click to shoot , it says code error
even tho i did it the same as you
same here