Scratch Catch Game

แชร์
ฝัง
  • เผยแพร่เมื่อ 14 พ.ค. 2017
  • Instructions for making the Scratch Catch Game. Pulteney Grammar Year 7 students are making 30 second scratch games to teach the Prep students a single mathematical concept. The games are designed to be fun but informative and to take into account the audience’s Mathematical background. The Year 7 students are being mentored in programming by the Year 9 IT students. So a mentoring mentor course.

ความคิดเห็น • 114

  • @iactuallydontcare7
    @iactuallydontcare7 4 หลายเดือนก่อน +1

    This was the most informative video i have ever seen, the editing was impecable and the tutorial was incredibly detailed.

  • @emiliob3502
    @emiliob3502 3 ปีที่แล้ว +8

    Thanks, I finish a project of two or three weeks in a night

  • @neonatom8646
    @neonatom8646 ปีที่แล้ว +1

    It's suprising there aren't many people from our school commenting here given that every year 8 has to watch this

  • @euanstoddart8141
    @euanstoddart8141 4 ปีที่แล้ว +14

    Cheers geza I needed this for my computer science project ⌨💻🖱

  • @adautomascarenhas3860
    @adautomascarenhas3860 4 ปีที่แล้ว +4

    Simply awesome man. I've learned quite a lot by watching and doing at the same time. Thanks a lot :)

  • @emanae428
    @emanae428 4 ปีที่แล้ว

    i was following your tutorial and now i make a super cool catch game

  • @bangkuwarteg4719
    @bangkuwarteg4719 4 ปีที่แล้ว +1

    great tutorial thanks!

  • @mehrdadmaghsoodi707
    @mehrdadmaghsoodi707 3 ปีที่แล้ว +1

    It was amazing.thank you a lot!!!

  • @asteriaflint4440
    @asteriaflint4440 5 ปีที่แล้ว +4

    that sound clicking is satisfying and thanks for this :)

  • @falkthereal5557
    @falkthereal5557 6 ปีที่แล้ว +1

    Cool Video

  • @thegardener4786
    @thegardener4786 5 ปีที่แล้ว +8

    This was very helpful since I couldn’t figure out how to make the game have a win screen and make the points activate it

    • @thegardener4786
      @thegardener4786 5 ปีที่แล้ว

      The game on scratch is called Dodge em and Save em

  • @vincentromine3949
    @vincentromine3949 5 ปีที่แล้ว +1

    Could you technically put the score-variable on the bowl instead? Is there a benefit to putting it on the apples?

    • @johnsonlabz
      @johnsonlabz  5 ปีที่แล้ว

      Vincent Romine when you get the Apple or clone to move to the top the script is set off by touching bowl. If touching bowl add score and move. If the move is on the Apple and the score is on the bowl then in the split second the Apple touches the bowl either the Apple script or the bowl script will be set off first. If the Apple script is set off first the Apple will move but the score will not change. If the bowl is set off first the score will change and then the Apple will move a split second later. You could get around this issue by getting the Apple to wait 0.01 seconds before deleting or moving and keep the scoring on the bowl. Then as long as it is a global variable it makes no difference. Good question and good luck with your project.

  • @sreekalavg5635
    @sreekalavg5635 4 ปีที่แล้ว +2

    Thank you... sir.. it was very helpful

  • @mukulyadav752
    @mukulyadav752 6 ปีที่แล้ว +1

    was a good video . i liked it

  • @tanuagarwal7676
    @tanuagarwal7676 3 ปีที่แล้ว +1

    jhakas

  • @aura.2613
    @aura.2613 3 ปีที่แล้ว +1

    ty and im gonna impress my teacher!

  • @abrarnov9732
    @abrarnov9732 5 ปีที่แล้ว +1

    Wow I love it u did so good at it😄😄😄😄😄

  • @Jamez-_-
    @Jamez-_- 3 ปีที่แล้ว +1

    Thank you so much you helped me understand scratch and i am doing my home work learning from u during this hard time

  • @Lurko
    @Lurko 5 ปีที่แล้ว +1

    Great video! Thank you very much.

  • @smokergaming2304
    @smokergaming2304 3 ปีที่แล้ว +3

    I made it when my teacher has been impressed

    • @johnsonlabz
      @johnsonlabz  3 ปีที่แล้ว

      Excellent! Good luck with coding.

  • @aaravaggarwal3765
    @aaravaggarwal3765 3 ปีที่แล้ว +2

    Thanks bro

  • @elina3253
    @elina3253 5 ปีที่แล้ว +2

    thanks bruh, u helped me do my project

  • @heatherroberts7213
    @heatherroberts7213 5 ปีที่แล้ว +1

    thanks man

  • @sonnylane9629
    @sonnylane9629 3 ปีที่แล้ว +1

    Thank you so much 🙏

  • @emanae428
    @emanae428 4 ปีที่แล้ว

    thank you!

  • @northofhell9474
    @northofhell9474 7 ปีที่แล้ว +1

    Cool

  • @davidsemaan8151
    @davidsemaan8151 7 ปีที่แล้ว +2

    nice

  • @shoshotolo
    @shoshotolo 6 ปีที่แล้ว +1

    Really well explained thank you!

  • @darylmanginsay7504
    @darylmanginsay7504 4 ปีที่แล้ว +2

    thanks for the tutorial boss

  • @swapnaghosh1818
    @swapnaghosh1818 4 ปีที่แล้ว +2

    How to set timer in this?

    • @johnsonlabz
      @johnsonlabz  4 ปีที่แล้ว

      I find the easiest way is to write a small piece of code in the background by creating a variable and give it a value. eg When 'Play' clicked, set Time to 30. Then add a loop of Repeat always, inside the loop add an IF statement, If Time < 1, stop all, Else: "Change Time by -1". This will set a timer for 30 seconds, and every second it will count down by one until less than 1 when it will stop everything. Instead of stopping everything you might make a sound, or switch background, or reset, or broadcast, but the idea is the same. This also allows you to show the variable of Time on the screen and it will count down for you. You can also get other things to change the variable of Time, such as create a Blue apple that when touching cat, adds 10 seconds to Time, or a black apple that when touching cat takes away 5 seconds. Lots of ideas to play with. Hope this helps. Good luck.

  • @khayadchannel5163
    @khayadchannel5163 4 ปีที่แล้ว

    Verry easy thank you so much

  • @thesassysistahs7320
    @thesassysistahs7320 5 ปีที่แล้ว +5

    thank you i love ti

  • @yasminespencer3969
    @yasminespencer3969 4 ปีที่แล้ว

    Is it suppose to be there already & If so can you make it?

    • @Baskstfssj
      @Baskstfssj 4 ปีที่แล้ว

      i learned how to program yayyyy ((((((((:

  • @amairag29
    @amairag29 4 ปีที่แล้ว

    thanks a ton

  • @ishy5423
    @ishy5423 4 ปีที่แล้ว +2

    THANK U OMGOMGOMG

  • @emanae428
    @emanae428 4 ปีที่แล้ว

    THANK YOU ! now i can finaly make da game

  • @ranithidahamnaabeysinghe6688
    @ranithidahamnaabeysinghe6688 3 ปีที่แล้ว

    Hey thank you very much!

  • @thaivkwm9332
    @thaivkwm9332 5 ปีที่แล้ว +1

    good game

  • @havishdhanasekar9577
    @havishdhanasekar9577 4 ปีที่แล้ว +2

    if you want to make it faster change y by -10 or -8 for the apple (the y is on the top)

  • @Lovemeonece
    @Lovemeonece 3 ปีที่แล้ว

    I have an exam for this in school in an hour, hopefully I can do it well ☹️

    • @johnsonlabz
      @johnsonlabz  3 ปีที่แล้ว

      Good luck with your exam!

  • @PeppaThing
    @PeppaThing 3 ปีที่แล้ว +3

    This helps alot!!!

  • @Baskstfssj
    @Baskstfssj 4 ปีที่แล้ว

    thx man

  • @Human_being_2045
    @Human_being_2045 3 ปีที่แล้ว

    thanks!

  • @Jimena.rg3
    @Jimena.rg3 5 ปีที่แล้ว +3

    It’s really good LOL

  • @Mischa09_
    @Mischa09_ 4 ปีที่แล้ว +1

    When I did the coding so when it goes to the bottom it falls again when I did it it didn't fall it went side to side on the top very quickly 😬

    • @johnsonlabz
      @johnsonlabz  4 ปีที่แล้ว +1

      It is probably stuck in a loop where it resets to random place at the top of the screen. You need it to do an if statement to check if touching bottom or cat else change y by -5.

    • @Mischa09_
      @Mischa09_ 4 ปีที่แล้ว +1

      @@johnsonlabz thanks 😁

  • @xxharol3110
    @xxharol3110 3 ปีที่แล้ว +1

    thank you :""

  • @navaro20
    @navaro20 5 ปีที่แล้ว +3

    Hello
    Thanks, great explaned
    But how to restart the game?

    • @johnsonlabz
      @johnsonlabz  5 ปีที่แล้ว

      navaro20 press the green button at the top. If you want to go back to the original conditions then add the line of code to the falling apples: when {green arrow} is pressed, goto y=200. Then continue with the rest of the code. This will put apples back at the top when you start.

  • @konodioda5031
    @konodioda5031 3 ปีที่แล้ว +1

    Why doesn't the scoring work and also the pop sound won't play for me? There's a forever block on top of them btw

    • @johnsonlabz
      @johnsonlabz  3 ปีที่แล้ว +1

      If you have two forever blocks going and triggered by the same code only one will go off. If you have the trigger “when touching go to top” and another “when touching go to top, play sound and add one to score” they won’t both work. Delete the first one and just keep the second and it should work fine.

    • @konodioda5031
      @konodioda5031 3 ปีที่แล้ว +1

      @@johnsonlabz Thanks!

  • @Cducharme24
    @Cducharme24 11 หลายเดือนก่อน

  • @user-jj1nu7oq8i
    @user-jj1nu7oq8i 3 ปีที่แล้ว

    Goos

  • @yellow_thunder536
    @yellow_thunder536 5 ปีที่แล้ว +1

    Im having trouble making a sprite disappear. Ive searched and watched many videos but none of them are addressing my issue. Can you help?

    • @johnsonlabz
      @johnsonlabz  5 ปีที่แล้ว +1

      Steven Hur use Hide and Show, eg when start clicked show, when clicked or sprite y-position < -150 hide

  • @Teodora-dw5gs
    @Teodora-dw5gs 4 ปีที่แล้ว +1

    Kosta Trifkovic? Imali nas?

  • @norakjotikaksok4091
    @norakjotikaksok4091 4 ปีที่แล้ว

    What is that kind of Scratch??? Can you tell me??

    • @johnsonlabz
      @johnsonlabz  4 ปีที่แล้ว +1

      This is the Scratch App and is the older version. I have made a new recording on my channel with the updated version of Scratch

  • @gevina1542
    @gevina1542 3 ปีที่แล้ว

    i need the background

  • @vidhisingh9058
    @vidhisingh9058 3 ปีที่แล้ว

    I don't know why but my score isn't decreasing.... Everything else is perfect! Thanks..

    • @johnsonlabz
      @johnsonlabz  3 ปีที่แล้ว

      vidhi singh, if you mean it needs to reset at start then add in Set Score to 0, after When Start clicked; if you mean when touching Apple, it is because the apple is deleting from one bit of code before the other bit can trigger. Remove the first code so there is only one longer version. Hope this helps.

  • @ChalkNDusterX
    @ChalkNDusterX 5 ปีที่แล้ว

    Scratch Interface Introduction here: th-cam.com/video/GCaNp_AJSho/w-d-xo.html

  • @fabiocardoso608
    @fabiocardoso608 4 ปีที่แล้ว

    cool

  • @ahmedmoon68
    @ahmedmoon68 4 ปีที่แล้ว

    I am having trouble . I want the script of life like you tell about score . Plz help me out

    • @johnsonlabz
      @johnsonlabz  4 ปีที่แล้ว

      Ahmed Moon create a new variable called “Life” and then use the score script from the video

    • @ahmedmoon68
      @ahmedmoon68 4 ปีที่แล้ว

      Sorry but I did not understand plz tell me the script

  • @yasminespencer3969
    @yasminespencer3969 4 ปีที่แล้ว

    I don’t have the of them block

  • @torontotom3168
    @torontotom3168 3 ปีที่แล้ว +1

    When i code the apple for some reason it does not repeat forever...
    When clicked
    Set y to 245
    Forever
    Change y by -5
    All of that works
    Now this part for some reason isn't working
    If y position < -150 then
    Go to random position
    Set y to 259
    Any help? Thank you!

    • @johnsonlabz
      @johnsonlabz  3 ปีที่แล้ว +1

      Put the if statements above the change y by -5 in the same forever statement, this will check for too low first, then either push it back to the top, or drop it down by -5

    • @torontotom3168
      @torontotom3168 3 ปีที่แล้ว

      @@johnsonlabz thank you!!! That worked!

    • @torontotom3168
      @torontotom3168 3 ปีที่แล้ว

      @@johnsonlabz i subscribed to your channel thanks for the solution

  • @jesuslover5968
    @jesuslover5968 3 ปีที่แล้ว

    My scratch doesn’t have data option at 10:00???

    • @johnsonlabz
      @johnsonlabz  3 ปีที่แล้ว

      Try variables tab instead, it should work the same.

  • @danubking_vietnam4627
    @danubking_vietnam4627 4 ปีที่แล้ว +2

    you can open this weep with your phone

  • @gaptv1476
    @gaptv1476 3 ปีที่แล้ว

    :D

  • @creativelife7942
    @creativelife7942 3 ปีที่แล้ว

    my left arrow is moving but not the right arrow.

    • @johnsonlabz
      @johnsonlabz  3 ปีที่แล้ว

      Check that you have forever if right arrow is clicked change X by +10

  • @Quannutus
    @Quannutus 3 หลายเดือนก่อน

    sigma

  • @William_The_Saint
    @William_The_Saint 5 ปีที่แล้ว +1

    hej

  • @orang2667
    @orang2667 4 ปีที่แล้ว +2

    xd lmao

    • @arma3koth290
      @arma3koth290 3 ปีที่แล้ว +1

      A wild Owen appeared

    • @orang2667
      @orang2667 3 ปีที่แล้ว +1

      @@arma3koth290 i found your old youtube videos

  • @ultramanvi6868
    @ultramanvi6868 4 ปีที่แล้ว

    but and a time

  • @soapyboiman
    @soapyboiman ปีที่แล้ว

    sorry this is 2017 not 2022

  • @thatcakecakecakecakeboii2505
    @thatcakecakecakecakeboii2505 4 ปีที่แล้ว +1

    now I know how that Indian was copying

  • @iammari9771
    @iammari9771 5 ปีที่แล้ว +1

    you go way to fast

    • @johnsonlabz
      @johnsonlabz  5 ปีที่แล้ว

      I go fast so people can get through it quick. Pause the video and then build that part, then hit play again. Good luck.

  • @kumaryudaya8661
    @kumaryudaya8661 3 ปีที่แล้ว

    I GIVE UP!!!!!

  • @kishanrathod7595
    @kishanrathod7595 2 ปีที่แล้ว

    It will not work

    • @johnsonlabz
      @johnsonlabz  2 ปีที่แล้ว

      Can you give information?

  • @biswajeetjena9241
    @biswajeetjena9241 3 ปีที่แล้ว

    Thanks bro