Tile Scrolling Platformer | 3. Tile Collisions

Поділитися
Вставка
  • Опубліковано 5 жов 2024
  • How to create a tiled scrolling platformer in scratch - part 3
    Games with their level's stored as a grid of tiles are very fast at detecting collisions, what's more they can also work for collisions off screen which is exactly what we need for creating better enemies, and better games. Today we will look at how these tile collisions work.
    👉 Next Episode - Part 4 - Platforming Scripts
    • Tile Scrolling Platfor...
    🐱 Scratch Starter Project Game Assets
    scratch.mit.ed...
    👀 Playlist of all Tile Scrolling Platformer Episodes
    • Griffpatch's Tile Scro...
    🚀 Boost Your Creativity with Griffpatch
    The Griffpatch Academy will take you from "Gamer to Game Creator"
    Learn more at 👉 griffpatch.aca... 👈
    😺 Scratch was developed by the Lifelong Kindergarten Group at the MIT Media Lab. See scratch.mit.edu
    In this tutorial we will learn how to:
    get Mario in the game
    control Mario with the keyboard
    scroll the level by having the camera track Mario
    detect point collisions with tiles
    resolve / fix collisions
    introduce basic platforming scripts
    fix collisions with height
    improve collision resolution with maths using mod
    I have used this very technique to create Paper Minecraft, Geometry Dash, Scratchnapped, Epic Ninja, Turrican 2, Appel and so many more games. Hopefully you will find this tutorial easy to follow and helpful.
    #Scratch #Scratch3 #Scrolling #tile #tilemap #map #Game #Platformer #Tutorial #griffpatch

КОМЕНТАРІ • 1,4 тис.

  • @skullcat324
    @skullcat324 3 роки тому +17

    0:05 mario's moonwalk looks so majestic!

  • @lemonboom589
    @lemonboom589 3 роки тому +71

    I just opened youtube to listen to some music in the background but then saw this video. I imediatly knew what to do.

    • @verasadventures5494
      @verasadventures5494 3 роки тому

      I recommend this game in Scratch

    • @Unknownboi57
      @Unknownboi57 3 роки тому

      @@SumRandomDewd Ikr

    • @fayriie
      @fayriie 3 роки тому

      i know what u were gonna do!

    • @dominations9303
      @dominations9303 2 роки тому +1

      Same here I love scratch coding because of him

    • @OOJMi_
      @OOJMi_ Рік тому +1

      In the background of What?

  • @brandocando12
    @brandocando12 6 місяців тому +6

    2:40 rare footage of griffpatch not using run without screen refresh
    (epic tutorial by the way!)

  • @tobybrowning4953
    @tobybrowning4953 3 роки тому +12

    There is just nothing else on UA-cam as helpful as your channel!
    Thanks for taking so much time on scratch and doing tutorials on UA-cam!

  • @haileyyyyy
    @haileyyyyy 3 роки тому +23

    hi griffpatch! i know you've seen a comment like this a billion times already but i just really want to thank you for making this tutorial series and the other tutorial series as well! not only for me, but for future aspiring scratchers who want to make games as well. your formatting, energetic voice and exciting personality really keeps me engaged. it kind of reminds me of a time that i taught my ict class how to do something in scratch in grade 8 because i was really ahead of everyone else and i was really excited to share my knowledge, so i recognize that sort of energy in you as well. anyway, i don't want to ramble on for too long. you're a great inspiration to us all and again thank you for everything!!
    ~ hailey

  • @Blue_Animations_Official
    @Blue_Animations_Official 3 місяці тому +1

    The fact that this man only looked at the source code for scratch and then became a mastermind of all things scratch is mind blowing :O

  • @albraaxes1811
    @albraaxes1811 3 роки тому +79

    nobody can wait for such a helpfull series like this!

  • @jeremyagu635
    @jeremyagu635 3 роки тому +8

    I don't know what most of us Scratchers would do if not for people like griffpatch.
    I'm a huge fan!

  • @andrewengelsma277
    @andrewengelsma277 3 роки тому +26

    Wow two 20+ minute long videos in as many weeks, griffpatch is giving us a real treat!

    • @christmasgamer6510
      @christmasgamer6510 2 роки тому

      First-

    • @tatertotboi
      @tatertotboi 2 роки тому +1

      @@christmasgamer6510nobody asked

    • @christmasgamer6510
      @christmasgamer6510 2 роки тому

      @@tatertotboi nobody asked you to ask

    • @chococookie7158
      @chococookie7158 2 роки тому

      @@christmasgamer6510 nobody asked you to say nobody asked you to ask

    • @christmasgamer6510
      @christmasgamer6510 2 роки тому

      @@chococookie7158 yeah you're right... but I'm the one who asked. Since you also said "nobody asked you to ask," you are technically asking too.

  • @brettbreet
    @brettbreet 3 роки тому +2

    I appreciate leaving in the sections of initial code that ends up having to be adjusted. It's very helpful to see just where the limitations of certain approaches are. Then we can see the problem solving work its magic rather than just get the final "perfect" code handed to us!

  • @4thdimensions795
    @4thdimensions795 3 роки тому +13

    In the wise words of griffpatch, "Make sure to tick run without screen refresh"

  • @DogeisCut
    @DogeisCut 3 роки тому +2

    Griffpatch, I thought I knew scratch up and down, but thanks to you I now know it even more!
    This is my list for the next tutorials:
    - Player animations
    - Enemies
    - Half slabs and slopes
    - special tiles (coins, checkpoints, ect)

    • @griffpatch
      @griffpatch  3 роки тому

      What about the level designer... :D

    • @DogeisCut
      @DogeisCut 3 роки тому

      @@griffpatch Oh yeah that too :D

  • @SmileyZGuy
    @SmileyZGuy 3 роки тому +57

    I know I’m late but can u make a tutorial on how each thing works (for example can u explain how mod works)

    • @griffpatch
      @griffpatch  3 роки тому +17

      (a MOD b) = the remainder after dividing a by b. So 32 / 32 = 1 remainder 0, and 34 / 32 - 1 remainder 2. The cool thing about this is that as we can use division to find the tile we are touching, and mod (remainder) to know how far through we were.

    • @SmileyZGuy
      @SmileyZGuy 3 роки тому +10

      @@griffpatch thank you I never new how mod worked, that could be very useful for some of my games

    • @SmileyZGuy
      @SmileyZGuy 3 роки тому +8

      Omg I just noticed u pinned my comment!!!!

    • @bulbasaur4943
      @bulbasaur4943 3 роки тому +4

      @@SmileyZGuy Yeah I usually use mods for sprite animations, to get easily from an animation to another, when you code some kind of animated platformer.

    • @GDPlainA
      @GDPlainA 3 роки тому +2

      @@bulbasaur4943 modulus and floor is really helpful

  • @Minimum3Dashers
    @Minimum3Dashers Рік тому

    I am making a platformer with a 16x16 pixel art. I have reached this part and feel so glad I was able to squash some bugs to make it fit.
    I had to mix up the normal platformer tutorial collision with the tile collision for it to work but everything was fine, thank you for always making tutorials of what people most need.

  • @birbo5603
    @birbo5603 3 роки тому +7

    Such an informative and helpful guide!! I've made tile games in the past, but the speed was limited due to constant looping through a tile list to find and resolve collisions. I'm glad you showed some great ways to do that and other things efficiently. I can't wait for the next episode!

  • @strangecorgi2903
    @strangecorgi2903 3 роки тому

    Griffpatch : What would you like to see next? Offscreen enemies? A level designer? Or should we go deeper?
    Me : YOU CAN GO DEEPER?! This is awesome!

  • @Firelord8447
    @Firelord8447 3 роки тому +3

    You are just the master of scratch and I can't think of anyone better in scratch than you

  • @JG_123
    @JG_123 4 місяці тому

    I think that griffpatch's voice is so calming and soothing, his side job could be a therapist.

    • @sumeetkumar112
      @sumeetkumar112 3 місяці тому

      yep for 3 years later shoud have did this insted of the platfomer or the rpg or the flappy bird

  • @QuakXYT
    @QuakXYT 3 роки тому +9

    Incredible tutorial! With this epic tile based collision it will be so cool to add moving enemies that also move and sense blocks off-screen. Awesome! :D

  • @kevinmeadows6284
    @kevinmeadows6284 3 роки тому +3

    Got to admit, my jaw dropped a bit on the key sensing in the operator. Clever.

  • @rohansachdeva4952
    @rohansachdeva4952 3 роки тому +68

    Hey Griffpatch!
    First of all, I would like to say thank you for taking out your time to help us so we can make better scratch projects. I subscribed to your channel few months ago, and you have been so helpful ever since. Really, thank you so much :)
    And another awesome tutorial! Your editing skills have become so better. Everyone, please don’t become impatient with griffpatch, he is trying to help us. However, he needs to think farsightedly, to prevent any problem or bug in future tutorials. So don’t complain if he takes time. Take as much time as you want, Griffpatch, and do keep us updated.
    Also, just a question, is it possible if we ask any doubt we have in our scratch projects to you? No problem if you aren’t free or anything, just a question.
    Thank you once again!

    • @griffpatch
      @griffpatch  3 роки тому +20

      Yes it sure is ok, just make sure to include your project ID in the comment if you need help because it's hard for me to keep track of conversations so better if I see them right off.

    • @rohansachdeva4952
      @rohansachdeva4952 3 роки тому +4

      ​@@griffpatch Thank you :D

    • @skibidisj
      @skibidisj 3 роки тому

      @@griffpatch ?

    • @Opti234
      @Opti234 3 роки тому

      @@griffpatch Thank you so much!

    • @samviranka7399
      @samviranka7399 3 роки тому

      @@griffpatch I was just using one of your awesome tutorials once again and for some reason when mario goest the top of the screen only then the y scrolling happens can you help me? scratch.mit.edu/projects/488900058/

  • @clashgaming2073
    @clashgaming2073 3 роки тому +4

    I used the first 2 episodes to create a nice parallax tile based scrolling background on top of the foreground tiles 2. Each tile is 96x96 so as to not exceed the clone limit :)

  • @Rory432
    @Rory432 3 роки тому +4

    I look on your channel every 5 minutes to see if you've posted the next part that is how much I love this! shame I've got online learning

    • @griffpatch
      @griffpatch  3 роки тому +2

      Not to worry - Online learning super important - Scratch will be there when your done! woo hoo!

    • @Rory432
      @Rory432 3 роки тому

      hmmmmm...for some reason the broadcast receiver "move player" doesn't seem to be receiving the message.

    • @timmytwertle1752
      @timmytwertle1752 3 роки тому

      Same

    • @arsenicmickey
      @arsenicmickey 3 місяці тому

      @@Rory432 did you even set up a block that sends out the message and that they have the same message?

  • @MarioGlitchy9
    @MarioGlitchy9 3 роки тому +8

    Thank you for your hard work! It's amazing how it's even possible to do this in Scratch. I think the next tutorial should be about animations (while also fixing the horizontal collisions and infinite jumping, of course).

    • @griffpatch
      @griffpatch  3 роки тому +3

      I agree completely - those are all on my high priority to-do list

    • @MarioGlitchy9
      @MarioGlitchy9 3 роки тому

      @NewSuperMarioBah What brings you here?

  • @mattsnows7971
    @mattsnows7971 3 роки тому +3

    It depends on how long this series will be, but I think an important step will be how to make individual levels. Once a level editor is implemented, I'm interested to see how you would store level information in a list(s?) for multiple levels. Anyways, nice video as always, it's really nice that nothing is rushed while new ideas are still constantly being introduced.

    • @griffpatch
      @griffpatch  3 роки тому +6

      I know that if I rush something it just ends up with people getting stuck... and that's such a shame.

  • @sanvijha7222
    @sanvijha7222 3 роки тому +1

    Hey griffpatch, I don't think you have noticed but the link for part 4 brings us right back on episode 3!

  • @JamJac7070
    @JamJac7070 3 роки тому +3

    I've never seen a scrolling platformer better than this!

  • @Alzter0
    @Alzter0 3 роки тому

    The extent to which you optimize everything boggles my mind, the "right arrow - left arrow" had me going "whaaaaa"

  • @Graverman
    @Graverman 3 роки тому +3

    There is a reason why this guy made my childhood with paper minecraft

  • @skull0gd222
    @skull0gd222 3 роки тому

    I’ve never been able to get collision in my games so it makes it hard to make things with walls or other things people can interact with so I’m so glad this video is out it will help me with my main problem with making games!

  • @j0code
    @j0code 3 роки тому +7

    24:22 plz do
    - jumping instead of flapping
    - give mario a width (and plz explain why to put the collision points into the corners instead of the middle of the edges, or vice versa, or how to do line collision)
    - level editor (but in a seperate project)
    - everything else you mentioned
    - multiple levels (ok, you'd just need to add another list :p)
    - a level exit point (like a specific tile, location or a flag pole)
    - enemies that can destroy blocks (solid tiles with a solid value less than e.g. 5)
    I like your videos, keep doing that greatness
    Also your voice so relaxing wow

  • @pavanvtayde
    @pavanvtayde 3 місяці тому

    "How many variables do u want in this tutorial Griffpatch?"
    "Yes"

  • @bitcode1009
    @bitcode1009 3 роки тому +37

    Thanks a lot griffpatch for the awesome tutorial! This is really useful! Will the next part of this series be about how to make your own levels?

    • @griffpatch
      @griffpatch  3 роки тому +16

      Possibly! - But perhaps first we should round off the platformer scripts? - It's a tricky balance because there's so much to add to each component of the game :) - And we want to cover everything!! hehe

    • @bitcode1009
      @bitcode1009 3 роки тому +2

      @@griffpatch Ok, great! Can't wait for the next video!

    • @mert.turoglu08
      @mert.turoglu08 3 роки тому +1

      @@bitcode1009 As usual!

    • @hatothithanh3747
      @hatothithanh3747 3 роки тому

      @@metegurses708 Are you worthy for that

    • @marum4e
      @marum4e 3 роки тому

      @@bitcode1009 same, i just think griffpatch should upload it daily it would be easier for me

  • @flossingyoda7012
    @flossingyoda7012 3 роки тому

    I watched the video, than had a problem, than watched it again and fixed it! you explain things so well, thank you!

  • @SUPY_
    @SUPY_ 3 роки тому +15

    Yay, New episode, now I can sleep LoL

    • @verasadventures5494
      @verasadventures5494 3 роки тому

      ua-cam.com/video/KLVaEJzIjS8/v-deo.html

    • @verasadventures5494
      @verasadventures5494 3 роки тому

      I recommend this game in Scratch

    • @SUPY_
      @SUPY_ 3 роки тому

      @@verasadventures5494 I am sorry, but i played it and it is trash

    • @SUPY_
      @SUPY_ 3 роки тому

      @@verasadventures5494 try to do game with smaller delay

    • @verasadventures5494
      @verasadventures5494 3 роки тому

      @@SUPY_ ok

  • @dmitryvasiliev9239
    @dmitryvasiliev9239 3 роки тому +2

    When I was making Minecraft clone, I used scripts from old Scratcharia version, and broke all my game xD Now, with your tutorial, I fix it! Thanks!!!!!!

  • @cookiecoder6295
    @cookiecoder6295 3 роки тому +11

    I’m early which means I can learn about this faster!

  • @iusedthewiki3529
    @iusedthewiki3529 2 роки тому

    I did a sort of hollow knight style game to a very basic degree with this, I’m normally working on Unity for games but I realised that it wasn’t my lack of knowing languages, I was bad at the actual logic behind it, watching your tutorials with your clear explanations helped

  • @unsweetened3781
    @unsweetened3781 3 роки тому +4

    9:41 Can't you just do X then Y? It would be easier to understand. Just do this: (X*10) + (Y + 1). You can get the tile index that way. Or will it all just break?
    Sorry I'm late to the party btw :P

  • @CheddarCookedNFL
    @CheddarCookedNFL 3 роки тому +2

    thanks griffpatch for taking your time and making videos about this tile scrolling platformer game (really cool).

  • @TheSidthewhizChannel
    @TheSidthewhizChannel 3 роки тому +4

    I went on youtube but I couldn't do anything before seeing this.
    OMG I got hearted by griffpatch!!!!
    Wait...
    everyone did...
    I like how griffpatch is at 27.3k subs but still hearts comments when he sees good ones.

  • @scroomers
    @scroomers 3 роки тому

    Whta I love the most is that on the actual project on the website, it's completely blank so you have to learn how it works without just capitalizing off of someone elses work.

  • @pandat1070
    @pandat1070 3 роки тому +3

    This was great! I do personally think it would be better to add more platforming scripts such as jump though platforms, slopes, and drop through platforms before any level design features. Also, will we add a player width just as we did a player height for better collision, or will we leave it only detecting the center of the player's x?

    • @griffpatch
      @griffpatch  3 роки тому +2

      Yes, the next tutorial is dedicated to making the platforming work (including width). We won't get into the special platform types yet though - too much for me to cover right off.

  • @kidslifestylebypark2157
    @kidslifestylebypark2157 2 роки тому +1

    21:42 griffpatch is a genius

  • @_the-one-and-only_8708
    @_the-one-and-only_8708 3 роки тому +3

    Thank you so much griffpatch for another amazing tutorial! You inspire me so much and I'm thankful for your dedication to helping other scratchers enhance their skills on the scratch website. Thanks for the tutorial,
    _THE-ONE-AND-ONLY_

  • @koussayhajlaoui9440
    @koussayhajlaoui9440 3 роки тому

    you are the best scratch tutor and the best programmer i've seen in my life. that's right i'm 12 but i still learn scratch from you. that's why i am a good scratch programmer. thanks a lot

    • @griffpatch
      @griffpatch  3 роки тому

      Yay, I'm really pleased I've been able to help you on your coding journey :D

  • @ABM_GD
    @ABM_GD 3 роки тому +2

    It’s here!

  • @spoopyissad
    @spoopyissad 3 роки тому

    Nothing is more satisfying than completing a griffpatch tutorial without any errors in the code

    • @griffpatch
      @griffpatch  3 роки тому

      Wow - good work, really pleased!

  • @Loev06
    @Loev06 3 роки тому +10

    Amazing tutorial! I've learnt a lot from this. Why do you also check the collisin for the middle of the player? Is this because if you were not to, a block between the two collision points could be allowed? With larger players (half size being more than 32) this issue could reappear, right?

    • @griffpatch
      @griffpatch  3 роки тому +5

      Spot on - I did have a little bit in my original dialog about that, but I cut it out as the video was getting a little too long. Since mario is 50ish pixels high, a 32 pixel high block could easily slip between head and feet sensors so the middle on e has to remain.

    • @verasadventures5494
      @verasadventures5494 3 роки тому

      ua-cam.com/video/KLVaEJzIjS8/v-deo.html

    • @verasadventures5494
      @verasadventures5494 3 роки тому

      I recommend this game in Scratch

    • @Unknownboi57
      @Unknownboi57 3 роки тому +1

      @@verasadventures5494 Stop

  • @calebmoir7151
    @calebmoir7151 3 роки тому

    My mind was blown again!!! I would be interested in seeing how you would tackle slopes and off screen enemies.

  • @PixelsNotVectors
    @PixelsNotVectors 3 роки тому +7

    Really enjoy the tutorials. You are one of the best coders I've seen.

  • @nikolaithomas9850
    @nikolaithomas9850 3 роки тому

    this is why griffpatch is my favourite scratch

  • @rohansachdeva4952
    @rohansachdeva4952 3 роки тому +4

    Not being hasty, but when's the next part coming?
    Im very excited xD

    • @acpugac4768
      @acpugac4768 3 роки тому +1

      the fact that he liked every comment but this makes me wanna give you a hug

    • @griffpatch
      @griffpatch  3 роки тому

      It wasn't intentional that I didn't heart it - it's that youtube flagged it as "held for review" until I unflagged it, but then it was lost lower down in the comments! It's a but annoying that it does that!

    • @rohansachdeva4952
      @rohansachdeva4952 3 роки тому

      @@griffpatch No Problem griffpatch, we understand :)

  • @PabTSM-OfficialChannel
    @PabTSM-OfficialChannel 3 роки тому +2

    i remade this in unity, and it turned out great! thanks!

  • @Mr_Gamer_123
    @Mr_Gamer_123 3 роки тому +7

    Oh yeah, also for some reason, when the right hand wall (or the ceiling) comes fully on screen, the camera jerks upwards to a really weird place that I didn’t even know was there. Any advice on how to deal with this? Thanks 😊

  • @laggydude
    @laggydude 3 роки тому +1

    Ok normally I don't play videos on 1080p HD (bc my internet is bad), but I'm using a mini-screen so I can have the video playing while I'm on scratch making the project, and it's usually really blurry, but the video looks so amazing in 1080p :O

  • @04tmoodyscratch24
    @04tmoodyscratch24 3 роки тому +12

    Yay another one! Wow, this was a lot of progress, I learned so much, very well explained! I can't wait for the next one, these videos are the best! Fantastic job!

  • @yahya2853
    @yahya2853 3 роки тому

    I know a lot about Scratch, but I didn't know that variables could support Booleans! Thanks for the video!

  • @chiroyce
    @chiroyce 3 роки тому +2

    5:32 Haha nice little joke that makes the video better :)

  • @privatei3080
    @privatei3080 3 роки тому +1

    The trick you do with the "when key pressed" block and the minus operation is so cool. Btw awesome videos :)

  • @InverseOfficial
    @InverseOfficial 3 роки тому +3

    First, YES!
    Also, amazing video as always, keep up the great content!

  • @chiroyce
    @chiroyce 3 роки тому +2

    WOAH! Captions make the video 10x better! Great editing! I can see the effort behind this ;)

  • @Mr.Mayhem602
    @Mr.Mayhem602 3 роки тому +3

    when you find the tutorial the day this one was made

  • @furytoo
    @furytoo 3 роки тому

    20:22
    griffpatch: maths is fun
    me: bruh, you've got to be kidding me...

  • @itzneloo
    @itzneloo 3 роки тому +1

    i just finished this part and its already sooooo good. i love ur work griffpatch!! :D

  • @axolotl09
    @axolotl09 3 роки тому

    I've been deciding if I should try this out, and I've decided to start tomorrow. I can't wait to start making this!

    • @griffpatch
      @griffpatch  3 роки тому

      You can do it! :) - Let me know how you get on!!!

    • @axolotl09
      @axolotl09 3 роки тому

      @@griffpatch Thanks! This looks pretty detailed and looks like it'll be fun to make.

  • @Matbatrathat
    @Matbatrathat 2 роки тому

    It is incredible how your tutorials can cover so much in only 20-30 min! Keep up the great work! You are awesome!

  • @dablueninja0381
    @dablueninja0381 3 роки тому

    this completely fried my brain with the number of blocks and variables needed

  • @chikoritalover
    @chikoritalover 3 роки тому +2

    Hey, griffpatch uses Scratch Addons, no surprise!

    • @mattsnows7971
      @mattsnows7971 3 роки тому

      I noticed a Control F one, what other addons/plugins does he use?

    • @chikoritalover
      @chikoritalover 3 роки тому +1

      @@mattsnows7971 The ctrl+F addon is part of Scratch Addons, make sure you've enabled it in the extension's settings

  • @fan0
    @fan0 2 роки тому

    0:04 Mario learned how to use Luigi's powers :O

  • @CodeIt641
    @CodeIt641 6 місяців тому

    That's so cool. Literally the coolest thing I've ever seen being made by a Scratcher. Love your videos so MUCH!👍

  • @KrazyAV
    @KrazyAV 2 роки тому +1

    Griffpatch Rocks!!

  • @lasercatto
    @lasercatto 3 роки тому

    "It's testing time!" My favorite words :3

  • @lasercatto
    @lasercatto 3 роки тому

    griffpatch when making custom blocks: I AM SPEED

  • @jmejuniper
    @jmejuniper 3 роки тому

    Oh! Just that little true/false to 1/0 trick is so helpful! I know you can do similer things in programming languages like Javascript, but I didn't know you could do that in scratch!

    • @griffpatch
      @griffpatch  3 роки тому

      Yes that's why I wanted to include it!

    • @jmejuniper
      @jmejuniper 3 роки тому

      @@griffpatch Well thank you!

  • @Scareness
    @Scareness 3 роки тому +2

    Thank you griffpatch for making this awesome tutorial. I was waiting for this

  • @Codefan321
    @Codefan321 2 роки тому

    Yes. This video was useful when making collisions in my Terraria v1.0 project. Thanks!

  • @Mdurham09
    @Mdurham09 Рік тому

    I was tinkering around with this and found out that if you put change y by Y - Camera Y / 20. If you do that instead of divided by 4 then it’s really good for games.

  • @IndianProYT
    @IndianProYT 2 роки тому

    Griffpatch the funny thing in your tutorials is that you create lots of variables and custom blocks in all of your tutorials lol xD.

  • @jofl7182
    @jofl7182 3 роки тому +1

    Griffpatch’s editing skills have gotten really good lol

  • @slimeyscratch
    @slimeyscratch 4 місяці тому

    I loved the part where griffpatch said "It's testing time" and tested all over the place.

  • @bhavneethscodinglab4136
    @bhavneethscodinglab4136 3 роки тому

    this is the best tutorial series ever known to me.

  • @nolan41
    @nolan41 3 роки тому

    My school chromebook loved this!

    • @griffpatch
      @griffpatch  3 роки тому

      They eat my tutorials for their breakfast :D

  • @Tuberex
    @Tuberex 2 роки тому

    I'm amazed at how you keep your code so organized

  • @chiroyce
    @chiroyce 3 роки тому +2

    griffpatch is back at it again!

    • @chiroyce
      @chiroyce 3 роки тому +1

      You should be given an award from UA-cam titled "Fastest time to release 3 parts of a tutorial"

    • @griffpatch
      @griffpatch  3 роки тому

      Yes I should lol

  • @nathanabban-mensah8206
    @nathanabban-mensah8206 3 роки тому

    PART 4! PART 4! I'M READY FOR PART 4!

  • @ruthk.s.2507
    @ruthk.s.2507 3 роки тому +1

    this couldn't be more helpful, couldn't it?

  • @lucia1507
    @lucia1507 3 роки тому +1

    Hi griffpatch! I've been following you on Scratch for a long time and recently discovered your UA-cam channel. Your projects are amazing, just like your tutorials! 😀

  • @Unknownboi57
    @Unknownboi57 3 роки тому

    The scratch lord strikes again!

  • @tamlambert1629
    @tamlambert1629 3 роки тому

    I don't regret subscribing. *SCRATCH ON!*

  • @Meow-Gobo
    @Meow-Gobo 3 роки тому +1

    i was observing your channel for a while and then this pops up! nice job mate!

    • @NightCat28
      @NightCat28 3 роки тому

      Heyo

    • @Meow-Gobo
      @Meow-Gobo 3 роки тому +1

      @@NightCat28 oh hey dude. following the tutorial too?

    • @NightCat28
      @NightCat28 3 роки тому

      @@Meow-Gobo yep

  • @RiggedPig
    @RiggedPig 2 роки тому

    Best scratcher in the world. Couldn't do this without you

  • @Keezyslimb
    @Keezyslimb 2 роки тому

    thank you for the script arrangement extension

  • @lasercatto
    @lasercatto 3 роки тому

    Thank yuo for making tutorials like this; they allow us to actually ask you questions that you might actually see!

  • @cbass69420
    @cbass69420 3 роки тому +2

    Griffpatch does such a good job at making this easy to follow along

  • @htandetuaung7238
    @htandetuaung7238 3 роки тому

    I so happy I can get to part 4! maybe... the reason I said maybe cause each time I try to do this tutorial I just fail and fail and fail each time but now I'm doing good

  • @vaniganesan9881
    @vaniganesan9881 3 роки тому +2

    Hi griffpatch. I was just wondering on why you didn’t use a hit box. I feel it could have made it easier instead of coding all of those scripts for beach collisions.

  • @griffinmansfield2738
    @griffinmansfield2738 3 роки тому

    who knew it would be so easy to learn such a great game engine?

  • @thebluescratchy2009
    @thebluescratchy2009 3 роки тому

    you are the king of Scratch

  • @陈骏彦
    @陈骏彦 3 роки тому

    Although it's hard to make,but I've finished it!Congratulations!