Scratch has been hiding blocks from us........

Sdílet
Vložit
  • čas přidán 4. 07. 2024
  • Scratch has been hiding blocks this whole time.... and today I'm going to show you how to get them!
    |
    For those curious bout the music \/
    Music from #Uppbeat (free for Creators!):
    uppbeat.io/t/prigida/mellow-bop
    License code: U0OEBFLURE7TRTOA
    uppbeat.io/t/mountaineer/fly-...
    License code: PBFJ48JXJH54BEVF
    Music not from Uppbeat:
    "Ghostrifter Official - Distant" is under a Creative Commons (CC BY-ND 3.0) license.
    / @ghostrifterofficial
    🎵 Music provided by BreakingCopyright:
    • ☔ Royalty Free Lofi Hip Hop Music: • ☔ Free Lofi Hip Hop Mu...
    #scratch #programming
  • Jak na to + styl

Komentáře • 98

  • @Izzythemaker127
    @Izzythemaker127 Před 6 měsíci +160

    The TurboWarp extension only has a tiny bit of what's possible in regular scratch, there's WAY more hidden blocks.

    • @boem231
      @boem231 Před 6 měsíci +7

      Please tell more

    • @Izzythemaker127
      @Izzythemaker127 Před 6 měsíci +35

      @@boem231 My first reply wasn't showing for some reason so I had to delete it then retype it. Basically the dropdown menus that are circular are separate blocks that are shadowed inside. With file editing its possible to un-embed the menus(only the circular menus though, not the square ones), and get them as separate blocks. Most people just copy hacked blocks from somewhere else, like a scratch project or the TurboWarp extension, so mistakes many by one person get lazy-journalismed across the whole website. One example of this is the when this sprite touches hat block almost always having the wrong menu. Most of the time when you see the block it has the menu from the sensing block instead of the menu exclusive to when this sprite touches. There's way more but I don't want to put it all in one comment, tell me if you want to hear more.

    • @RokeJulianLockhart.s13ouq
      @RokeJulianLockhart.s13ouq Před 6 měsíci +4

      ​@@Izzythemaker127I want to hear more.

    • @Izzythemaker127
      @Izzythemaker127 Před 6 měsíci +1

      @fiveminutesforgames100 Unfortunately the stretch blocks don't do anything, unless you have the TurboWarp stretch extension, where the stretch blocks set x and y stretch to undefined(Not NaN, undefined values exist in scratch).

    • @Izzythemaker127
      @Izzythemaker127 Před 6 měsíci

      @@RokeJulianLockhart.s13ouq You know how I said that all circular menus are technically their own blocks? Well so is the note selection menu. The note selection menu pretends to be an input like number input or string input, but its secretly its own block to. If I had to guess why this happens, its because extensions can't add more inputs. Other inputs aren't like this, for example integer input is part of a different system. On the exact opposite case, the broadcast dropdown menu has its own id, but scratch likes to auto convert it into the identical looking input form. My best guess as to why that one happens is so that the auto conversion can fill in all of the necessary detail, like broadcast id and name, which couldn't be done with just a dropdown. Even if my guess is incorrect, its most likely still a hacky workaround. Also, the round block with the note menu in it, and the color menu inside the join block, those aren't special, someone just made them once and then it got swept up in the copy paste game by people who can't be bothered to edit the json file themselves.

  • @CrazyMusicBoy44
    @CrazyMusicBoy44 Před 6 měsíci +56

    The while block isn't that big of a deal because of how you can use the repeat until block with a not reporter, but the for loop will definitely shorten code

  • @domi-no1826
    @domi-no1826 Před 6 měsíci +7

    2:00 that is so useful for word scanning!

  • @theanomynusguy
    @theanomynusguy Před 6 měsíci +25

    The last 3 blocks are just a way to get colours, piano notes, and a matrix display. U can just join them to a blank character

  • @MrIncredibleMaker
    @MrIncredibleMaker Před 6 měsíci +13

    sensing block, CoreExample Blocks, all at once control block, red hat block, menu input reporter blocks, point towards ( _ random _ v) block: am i a joke to you?

  • @seth-blank
    @seth-blank Před 6 měsíci +14

    Why this video so good? No ones talking about this? This crazy.

    • @mannequinyt
      @mannequinyt Před 6 měsíci

      crazy?

    • @RucaDoo
      @RucaDoo Před 6 měsíci

      @@mannequinytI was never crazy. they never put me in any rooms. I find rats delightful.

  • @mrlucidss
    @mrlucidss Před 5 měsíci +2

    Rest in piece Cloud link, it will be missed

  • @tunafissh
    @tunafissh Před 6 měsíci +3

    a “round” block would actually be cool

  • @mtunixic
    @mtunixic Před 6 měsíci +7

    btw if you're working on the multiplayer part2 (please do it already if not), there's alot of bugs i found like p2 appearing on screen1 but the other screen can't see p2, or the player being able to alter p2's movement, or even p2 not moving at all

  • @NotAlphaSlayer15
    @NotAlphaSlayer15 Před 7 dny +2

    *I want “if i recieve ”*

  • @Cart1416
    @Cart1416 Před 6 měsíci +2

    didnt expect to see bing

  • @aaron_the_penguin
    @aaron_the_penguin Před 6 měsíci +2

    Wow, a wild bing user.... incredible!

  • @monakitcreator
    @monakitcreator Před 6 měsíci +4

    Actually, round is an official scratch block.

    • @official-obama
      @official-obama Před 6 měsíci +1

      they just edited the json so it had piano notes instead

  • @TheTroll3000
    @TheTroll3000 Před 5 měsíci +1

    I had a fight with CZcams until it played the video without an ad.

  • @catburner1896
    @catburner1896 Před 6 měsíci

    The weird thing about the foreach block is that it represents a for loop when in c# foreach is its own statement that runs logic foreach item in an array, basically a list with a set size.

  • @user-fn3dz2sv5b
    @user-fn3dz2sv5b Před 9 dny

    Great Video!
    I just want to let you guys know that:
    The while block can be created without hacks by using a repeat until block and "not" block.
    Use a variable. You can change the "counter" by as much as you want, decrease it, create multiple of them and show it or hide it on screen.

    • @dud166
      @dud166 Před 3 dny

      the while block shortens code tho, and that way you said is a lot more complicated

  • @OctoLegend
    @OctoLegend Před 6 měsíci +2

    You can use file editing to get even more inside of regular scratch

  • @Elomentoplayz
    @Elomentoplayz Před 6 měsíci +5

    3:00 The while block has also been on Scratch forever

    • @badmusicproducer_offical
      @badmusicproducer_offical Před 6 měsíci +2

      no?? what universe is bro in ive never seen that before

    • @RokeJulianLockhart.s13ouq
      @RokeJulianLockhart.s13ouq Před 6 měsíci

      ​@@badmusicproducer_officalthe future 😢

    • @xaigamer3129
      @xaigamer3129 Před 6 měsíci +2

      @@badmusicproducer_officalhe lives in the universe where everything is scratch 1.4

    • @pixelatedluisyt
      @pixelatedluisyt Před 6 měsíci +1

      bro thinks repeat until with not boolean counts as a while block
      well it does but there’s still no while block in normal scratch so take the L

    • @sherrypierson3249
      @sherrypierson3249 Před 6 měsíci

      no

  • @TheAmazedTM
    @TheAmazedTM Před 6 měsíci +2

    Wow! I never knew that!

  • @chieseledboockshelf
    @chieseledboockshelf Před 6 měsíci +2

    For each I in and when sprite touches blocks are VERY POWERFUL 😲😄

  • @iaroslav3249
    @iaroslav3249 Před 2 dny

    The last three are not secret blocks, they are input hacked blocks, meaning we put stuff in them we aren't supposed to, doesn't mean they are useless, just not usual.

  • @godofmachines
    @godofmachines Před 6 měsíci +4

    Fun fact: cats are cats 🤯

  • @Slekr1
    @Slekr1 Před 6 měsíci +5

    Plz work on multiplyer part 2

  • @Belizard7
    @Belizard7 Před 6 měsíci +3

    cool video!

  • @xxlarrytfvwxx9531
    @xxlarrytfvwxx9531 Před 6 měsíci +1

    That's a lot of extensions!

  • @vk8a8
    @vk8a8 Před 6 měsíci +3

    DONT TELL GRIFFPATCH

    • @user-sr8vr7mw9x
      @user-sr8vr7mw9x Před 6 měsíci

      What about the physics extension that griffpatch himself made?

  • @whamer100
    @whamer100 Před 6 měsíci

    wtf the "when sprite touches" block could've come in handy so many times i wish i knew of this earlier

  • @user-fn3dz2sv5b
    @user-fn3dz2sv5b Před 9 dny

    Would it still work if I share the project. I will test and edit if results change.

  • @EtherealDisposition
    @EtherealDisposition Před 6 měsíci +6

    I mean most of these hidden blocks can be replicated with code blocks already in scratch (also i'm pretty sure that the "while" block already exists) so i'm not surprised they removed them
    reminds me of when there was a [forever if] block in scratch 2

    • @erixccjc2143
      @erixccjc2143 Před 6 měsíci +2

      For and while are basic functions in basically all programing languages. Makes no sense why they arent in scratch

    • @JulMik
      @JulMik Před měsícem

      ​@@erixccjc2143while is already in scratch, just hidden.

    • @bunnieO84
      @bunnieO84 Před 9 dny

      @@erixccjc2143 Is Because Forever Is More Understandable Then While

  • @jportz69420
    @jportz69420 Před 6 měsíci

    Do you know when the multiplayer game part 2 is coming?

  • @user-sr8vr7mw9x
    @user-sr8vr7mw9x Před 6 měsíci +1

    Please make a sequel to this multiplayer shooter! I really need the multiplayer mechanics, I tried to improve it by giving each clone its own name (Clones+ extension), but I would like to know your opinion on this matter.

  • @EquaTechnologies
    @EquaTechnologies Před 6 měsíci

    well you can edit the JSON file when you donwload your project, convert the .sb3 file extension to .zip, open the .zip file, open project.json and edit the blocks. when you're done, convert it back into .sb3 and make sure you didn't make any mistakes when you wanted to make the custom block(s)

  • @TheOnlyFlameMaster-tq7ml

    I literally had the idea for the while block!

  • @yourordinaryduck929
    @yourordinaryduck929 Před 6 měsíci +1

    FOR LOOP IN SCRATCH YESSSSSS

  • @Sylvatic98
    @Sylvatic98 Před 6 měsíci

    Instructions for recreating these blocks in actual scratch projects:
    "When this sprite touches (thingy)" can instead be a forever loop that says "wait until touching (thingy), broadcast x, wait until not touching (thingy)"
    "For each (thingy) in (number)" can instead be "repeat floor((number) divided by (thingy))". (for non mathy people, floor rounds down a number)
    "while (stuff)" can literally just be "repeat until not (stuff)"
    counter can be done with a variable, not sure what purpose it has being there
    last few seem useless, I could maybe see a niche use for the join block but don't have a way to recreate it

    • @JulMik
      @JulMik Před měsícem

      But that blocks works in scratch.

  • @Fatharabhimanyusafii
    @Fatharabhimanyusafii Před 5 měsíci +1

    Nice

  • @dailymemesjw
    @dailymemesjw Před 6 měsíci +2

    The while block actually be so helpful

    • @emilyy03
      @emilyy03 Před 6 měsíci

      you can just do "repeat until ". i can see how itd be more convenient but its pointless with this in mind

    • @dailymemesjw
      @dailymemesjw Před 6 měsíci

      @@emilyy03 true, but there are also some other things that wouldn’t work like that and require a lot of extra work

    • @emilyy03
      @emilyy03 Před 6 měsíci

      @@dailymemesjw speaking in general or abt the while block? cuz yeah a lot of these removed blocks would be useful, but the while block only has one function

  • @DerpiFlea174
    @DerpiFlea174 Před 6 měsíci

    your OC looks like mine, hey!

  • @bottlecapbeaver
    @bottlecapbeaver Před 6 měsíci

    why the heck would scratch hide these? Especially the for and while loops? I get the other weird ones like the counter which were probably just experimental.

  • @mikevazovsky2532
    @mikevazovsky2532 Před 6 měsíci +2

    You can also hack to get other blocks

  • @StanceMore
    @StanceMore Před 2 měsíci

    nice microsoft, i have it too

  • @Thatoneham
    @Thatoneham Před 6 měsíci

    yo it would be sick if you can show how to make a playerlist for cloudlink

    • @thekrazydev
      @thekrazydev  Před 6 měsíci

      Theres already a block to do that using the Usernames blocks

    • @Thatoneham
      @Thatoneham Před 6 měsíci

      @@thekrazydev Yea but you have to separate the username and it won't do that if you put get username from cloudlink username it just gives undifined

  • @iamexplorerdikerem20
    @iamexplorerdikerem20 Před 6 měsíci

    im pretty sure the last block is used in lego spike or something

    • @JulMik
      @JulMik Před měsícem

      It's from micro bit

  • @BKhens
    @BKhens Před 6 měsíci

    Ik stuck on the blue screen saying loading project

  • @Elomentoplayz
    @Elomentoplayz Před 6 měsíci +3

    This requires more jumpcuts in the audio imo

  • @zhiandionisio503
    @zhiandionisio503 Před 7 dny

    MOBILE USERS: aww man no turbowarp🥺

  • @cheesepop7175
    @cheesepop7175 Před 6 měsíci +1

    idk why some people think scratch isin't a real programing language
    not all programming languages have to be text based
    wouldn't that mean blueprint isin't a programming language

    • @safeforwork8546
      @safeforwork8546 Před 6 měsíci

      I mean probably because a for loop is considered a secret ancient feature.

  • @masonleblanc6726
    @masonleblanc6726 Před 6 měsíci +2

    I like secrets…

  • @EpicNoobx
    @EpicNoobx Před 6 měsíci +1

    is that edge

    • @thekrazydev
      @thekrazydev  Před měsícem

      forgot to install google (dont question the 5 month reply)

    • @EpicNoobx
      @EpicNoobx Před měsícem

      @@thekrazydev oh ok

  • @theopoldthegamer4284
    @theopoldthegamer4284 Před 6 měsíci

    Why are you flicking things on-and-offscreen like that

  • @sherrypierson3249
    @sherrypierson3249 Před 6 měsíci

    I…

  • @AlexPBenton
    @AlexPBenton Před 6 měsíci

    You can make all of these using regular scratch blocks:
    When touching is just Flag->forever->wait until touching->[put code here]->wait until not touching
    The while loop is just repeat until not
    The for loop is just repeat X->change Y by 1
    The increment and reset counter is just change x by 1 and set x to 0

    • @JulMik
      @JulMik Před měsícem

      Or Just import that blocks to regular scratch.

  • @Vinc6366
    @Vinc6366 Před 6 měsíci

    Bro there just hacked blockes

    • @Vinc6366
      @Vinc6366 Před 6 měsíci

      Blocks

    • @EpicNoobx
      @EpicNoobx Před 6 měsíci

      @@Vinc6366 you can edit your comments...

  • @shadowboss6609
    @shadowboss6609 Před 6 měsíci

    it does not work

  • @sherrypierson3249
    @sherrypierson3249 Před 6 měsíci

    that’s not 9 blocks

  • @plantboy1234
    @plantboy1234 Před měsícem

    @turbowarp