Тёмный

Can I Learn Scratch AND make a Game in ONE hour? 

Skrelo
Подписаться 10 тыс.
Просмотров 48 тыс.
50% 1

Play the game here: scratch.mit.ed...
You can also try the tutorial game (It sucks): scratch.mit.ed...
For today's video, I'll be trying to learn scratch, and make a game in one hour.
This is a programming language that I've never tried before, but have always seen and been curious about. I have experience programming in C# (Unity Engine) and C++ (Unreal Engine), so I felt like 1 hour was a reasonable amount of time to learn scratch.
If you enjoyed the video, be sure to like and subscribe!
● Twitter - / skrelo
● Watch my other videos
📹 Making my First Mobile Game in ONE Day (Skrelo)
Link : • Making my First Mobile...
--------------------------------------------------------------
📹 5 Years Of Learning Game Development (Skrelo)
Link : • 5 Years Of Learning Ga...
--------------------------------------------------------------
📹 Adding a BUNCH of weapons to my DREAM game | Devlog #1 (Skrelo)
Link : • Adding a BUNCH of weap...
--------------------------------------------------------------
📹 AI Learns to Drive an F1 Car (Skrelo)
Link : • AI Learns to Drive an ...
--------------------------------------------------------------
● Similar Videos
📹 I Became a Scratch Developer for a Day (PolyMars++)
Link : • I Became a Scratch Dev...
--------------------------------------------------------------
📹 Making a Game in ONE HOUR (Dani)
Link : • Making a Game in ONE HOUR
--------------------------------------------------------------
📹 I Made Minecraft in 24 Hours (Sam Hogan)
Link : • I Made Minecraft in 24...
--------------------------------------------------------------
● Music
♪ Starter [8 bit Dub]
Link : opengameart.or...
--------------------------------------------------------------
♪ Ooame (TAD: / tadon )
Link : opengameart.or...
--------------------------------------------------------------
#gamedev #indiegame #indie #scratch #skrelo #makegames #makegames #unity #unrealengine

Опубликовано:

 

2 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 167   
@Skrelo
@Skrelo 2 года назад
Shroud's secret aim trainer (Play the game here): scratch.mit.edu/projects/732238737
@blurrysquire6671
@blurrysquire6671 2 года назад
Hey! The game is fun but a little hard Edit: I made a remix of the game. I made it so that the target doesn't spawn partially off-screen, and it shrinks at half the speed it did before.
@Skrelo
@Skrelo 2 года назад
@@blurrysquire6671 Nice!
@blurrysquire6671
@blurrysquire6671 2 года назад
@@Skrelo Thanks!
@Faulerbauer
@Faulerbauer 2 года назад
ok
@Faulerbauer
@Faulerbauer 2 года назад
wait is tihs your game tihs is prity good
@LokeyYoutube
@LokeyYoutube 2 года назад
How is this guy uploading every day
@romanahoque8061
@romanahoque8061 2 года назад
Wrongggg
@Cleacat
@Cleacat 2 года назад
Not true
@LokeyYoutube
@LokeyYoutube 2 года назад
Chill guys.😂
@averagewalkingmeme1031
@averagewalkingmeme1031 2 года назад
Wrong, it’s been 4 days since this video was posted.
@LokeyYoutube
@LokeyYoutube 2 года назад
@@averagewalkingmeme1031 got it
@pastatheh7041
@pastatheh7041 2 года назад
Ooh there's really a lot more to learn in scratch. Btw, you could have used costumes inside sprites. Costumes are.. Sprites for sprites I guess? Basically costumes are the images, and you can change them with nodes too. Also there's cloning stuff so you don't have to copy paste the same sprite over and over, but it's a bit more complex
@bobross38
@bobross38 2 года назад
Sorry I’m sick rn but nice video! Quick advice: I think you should at least part your videos for every few days rather than every 1 or 2 days 🎉 Your editing was on point and it kept me engaged to watch through the entire video! Great job 👏
@bobross38
@bobross38 2 года назад
@Mellanic thanks man! Im starting to feel better now 😃
@Its_PacFan
@Its_PacFan 2 года назад
As a 3 Year Scratch user myself, you can do much more advanced things with Scratch than most people give it credit for. Some people had made fully fleged fan-games of stuff like Super Mario, Mega Man, etc. Hell, some people made near perfect recreations of arcade games like Pac-Man or Donkey Kong. Nice video, tho (:
@GrainofZand
@GrainofZand 2 года назад
bro, people have made 3d games with scratch
@sivertsivert607
@sivertsivert607 2 года назад
Yes
@Logangamez8989
@Logangamez8989 2 года назад
FNF in scratch
@mrtcnn0
@mrtcnn0 2 года назад
Yes you are very right. It is still very limited but not it is not as limited as people think
@disrespecc9678
@disrespecc9678 2 года назад
@@GrainofZand We know. Nobody needs to tell anyone that
@chillcraft2258
@chillcraft2258 2 года назад
You can pick up a script, and drag it to another sprites window in the sprites selector. You can also right click a sprites window and select duplicate to duplicate the whole thing! Hope this helps in the future:)
@Skrelo
@Skrelo 2 года назад
Thank you! That does help 😃
@chillcraft2258
@chillcraft2258 2 года назад
@@Skrelo no problem haha:)
@ellgaming01
@ellgaming01 2 года назад
Hi there Skrelo! I'm just here to tell you - I've been using Scratch for a while now, and I can help you a little. I don't have an account, but I can tell you how to code some stuff. An example if for a boat game. Make a backdrop by going to the backdrop and going to 'paint'. Brown being walls, blue being water and green being a finish line. Add more levels by going to the backdrop, going to 'paint' and then paint a new backdrop. Make a boat sprite. Be sure to give all of the backdrop's walls surrounded by brown so players can't just walk through like yaba daba doo. [start position] is not a variable. They are just things where you can type something in and make it start there. [SCORE] is a variable. Now, here's the code in the boat sprite: When green flag clicked: Go to x: [start position] y: [start position] set [SCORE] to 0 (forever: (if distance to mouse-pointer > 5 point towards mouse pointer move 1 steps) (if touching color brown (make sure it's the exact brown) Go to x: [start position] y: [start position] set [SCORE] to 0) (if touching color green (make sure it's the exact green) Go to x: [start position] y: [start position] change [SCORE] by 1 broadcast message next-level')) When I receive go-to-start Go to x: [start position] y: [start position] And in the backdrop: When green flag clicked: switch costume to costume1 When I receive next-level: (if not backdrop number = [NUMBER OF LEVELS YOU HAVE CREATED]: broadcast message go-to-start next backdrop else: stop all This code is 100% tested and works. To make the exact color, click the color icon on the touching color ___ boolean, click the pen icon and then click the color. This should copy the colour over to the block.
@RxZrScratch99
@RxZrScratch99 8 месяцев назад
why did you write a whole essay
@Valcuda
@Valcuda 2 года назад
This was me with my final exam in computer tech, except with Java, and I had 4 hours. I was supposed to have been learning Java for half the year (I literally asked my teacher if I could), and I only really did 6 lessons, and just faked the rest, since my teacher had (accidentally?) given me access to the programs I was supposed to type, pre-made. My final exam came rolling around, and surprise surprise! I had to make a. Magic 8 ball in Java! I honestly still have no clue how the hell I passed that. I wrote the entire program in less than 4 hours, had a dozen tabs of documentation open, and was somehow able to explain all my code to my teacher.
@Skrelo
@Skrelo 2 года назад
That's genuinely impressive LOL, you've got programmer in your veins
@LayeredHalo
@LayeredHalo 2 года назад
You're a god and IN JAVA
@aleksaaleksic4353
@aleksaaleksic4353 2 года назад
I tried to learn java, and it's mind bending, honestly c++ is easier for me, but that might be just because I'm more comfortable with the syntax in c++
@chonkydog6262
@chonkydog6262 2 года назад
Half the year learning Java? And your final assignment was to.. make an 8 ball program?
@Pricklyscug
@Pricklyscug 2 года назад
now try to make something with extensions and you can also go into sprites tab in a sprite where you can put all sprites the sprite can change too
@More_DRN
@More_DRN 2 года назад
this is cool! you should try this with Game Builder Garage for the Nintendo Switch
@Mr_Monotonic
@Mr_Monotonic 2 года назад
you could have right clicked the sprite and clicked duplicate to get a copy of it :)
@kidznews3272
@kidznews3272 2 года назад
an idea: watching griffpatch's on to make a platformer
@Onion224
@Onion224 2 года назад
try to learn x and y velocity, it will make moviments a lot more smoother
@stio_studio
@stio_studio 2 года назад
You can add globale variables to make a high score
@mlgdoge12343
@mlgdoge12343 2 года назад
3:27 at the bottom of the editor there is a backpack tool, click it and drag things in. This backpack stores only for you. And stores it forever (until you delete it)
@ufoulroo2035
@ufoulroo2035 2 года назад
Great video, love watching videos of people trying new things
@ArethaN.A
@ArethaN.A Год назад
S a m e
@Kunorrii
@Kunorrii 2 года назад
You can use raycasting to make 3d games in scratch. It's complex but the final product is absolutely astonishing.
@orpezo
@orpezo 2 года назад
uhh.... you can change how the sprite looks (and add from the sprite menu) by going to "customize". And if you right click a sprite from the menu bottom-right then there is an option "duplicate" which also duplicates the coding.
@eddgow
@eddgow 2 года назад
You should see MY scratch games
@wonderman6210
@wonderman6210 Год назад
How Can a make fps game only using a tablet? My mind is running wild of making a fps game but I only have a table and no experience. What can you recommend me?
@friday_nghtroblox5336
@friday_nghtroblox5336 2 года назад
Pretty cool game Skrelo! I want to see a clicker game though. If you want to see how is a clicker game, check the game that I maked myself! (Soon!)
@victorius2975
@victorius2975 2 года назад
some people take scratch too far and remake the entirety of doom with the same bsp rendering method
@pastatheh7041
@pastatheh7041 2 года назад
Yeah. Ray casting might sound Mediocre and old school until you realize it's possible on Scratch
@ego-lay_atman-bay
@ego-lay_atman-bay 2 года назад
The fact that he called the blocks "nodes"
@redstrider6814
@redstrider6814 2 года назад
I knew it wouldn't be long before one other person in the SA discord found this video
@steakerton8296
@steakerton8296 2 года назад
3:47 “I’m not warmed up right now” ok
@sahildas.
@sahildas. 2 года назад
i loved scratch since i was 4 and i am 7 plus you should use clones on the first game
@Jachii9
@Jachii9 2 года назад
while you're at it, you should check out scratch's built in vector costume (image) editor, you can just draw a bunch of shapes and scale it up infinitely, and there will be no pixelation, the bitmap editor is more for pixelart than anything in the costumes tab, there's this big blue button that (if the current costume is bitmap) will say "convert to vector". then you can just use the shape tools on the left to draw stuff. If the button says "switch to bitmap", you're already in vector mode Basically what i'm saying, scratch can display vector images
@Skrelo
@Skrelo 2 года назад
Vector images are really impressive for games, will definitely take a look at that!
@Jachii9
@Jachii9 2 года назад
@Skrelo also, you can duplicate costumes/sounds into other sprites by just dragging that sound from the sound/costume list to the sprite icon on the sprite list
@supersain2349
@supersain2349 2 года назад
now make a text engine
@amabananaman
@amabananaman 2 года назад
3:30 You can use the Backpack to copy code from one sprite to another. Drag the code into the backpack, click the sprite you want to have the code in, and delete the old sprite (if you want to). The code is still there even if you make new projects. You can delete it by right clicking on the one you want to delete.
@ellgaming01
@ellgaming01 2 года назад
That copies the whole sprite altogether, so if you want to move code to a different sprite in the same exact project, just right-click the code and click 'duplicate'. Then drag it to a different sprite. It may drag the sprite but left-click the sprite and left-click the other sprite again to fix that. Then drag the code to the sprite again and ta-da.
@Anikin3-
@Anikin3- 2 года назад
or just drag the code from one sprite to the other
@drippymissouri
@drippymissouri 2 года назад
Griffpatch makes epic tutorials
@pastatheh7041
@pastatheh7041 2 года назад
True! I watched platformer and tile scroller tutorials. They gave me a lot of knowledge about scratch and how it works in general. I also had some experience with Mcreator, which is an app for creating Minecraft mods, and it has "Procedures" which is basically block coding like in scratch with slight differences.
@gabriel_pogorzelski
@gabriel_pogorzelski 2 года назад
can you try to make the same but with gdevelop 5?
@RewRew_zerothree
@RewRew_zerothree 2 года назад
Make a rpg it’s more simple then you think!
@jiray5457
@jiray5457 2 года назад
I did make a survival and a 3d game in scrach in SCRACH
@wonderman6210
@wonderman6210 Год назад
My mind has a set plan of making fps I can't make it stop.
@jamespennington6428
@jamespennington6428 2 года назад
3:30 you can drag and drop the blocks to other sprites and the background, right click on nothing, and click “clean up blocks”
@Skrelo
@Skrelo 2 года назад
Interesting, thanks for the tip!
@The_octogamer
@The_octogamer 2 года назад
I dare to make a tile scrolling rpg
@MrHatTheHat
@MrHatTheHat 2 года назад
OH MY GOD THATS EVIL
@Mistereee
@Mistereee 2 года назад
you should try making a 3d game haha
@klocky_
@klocky_ Год назад
Hi Skrelo! you said something about copy/pasting things over around 3:25 , there is a way to do it. all you needed to do was to drag the code into your "backpack" you can find it at the bottom of your screen. another option was to go to the "costumes" tab for the sprite with all the code, make a new costume (or upload it) and delete the basketball costume! hope this helps
@MrHatTheHat
@MrHatTheHat 2 года назад
Make a clicker game on scratch, its pretty easy, just needs the most bssic understanding of varabies
@gamingwitharmyguy7439
@gamingwitharmyguy7439 Год назад
You can duplicate the sprite lol
@Illumivoid
@Illumivoid 2 года назад
Man, this is nostalgic. I use to code on scratch and I made some good games. But I've moved on to python and stuff. You did well and made a good vid! Good job!
@BusterBrown1217
@BusterBrown1217 2 года назад
I remember learning scratch in like the 5th or 4th grade and I remember making some pretty innovative things for the time. I created one of the earliest text engines I could find. I also made some encryption and decryption which is pretty cool. I'm pretty sure those projects don't exist anymore.
@Skrelo
@Skrelo 2 года назад
Impressive for such a young age!
@BusterBrown1217
@BusterBrown1217 2 года назад
@@Skrelo Yeah I was a genius back then. Don't know why I'm not now but whatever.
@yablock7346
@yablock7346 2 года назад
try make 3d game in scratch
@Casual_Games_The_Stink
@Casual_Games_The_Stink 2 года назад
(Warning: long essay coming up) I’ve spent many years doing scratch. I started in third grade (I was stupid back then and didn’t get it) but I actually took things in in fourth grade and every year past, I’ve always been the Scratch dude at my school. If anybody had bugs, they would get me to seek them out. I started my favorite project in fifth grade and I still make some adjustments to it. It’s a faithful remake of my favorite game (Bee Swarm Simulator on Roblox). But back then, I was an obscure figure that most people hardly knew whilst now, everyone knows who I am. I spent like 5 minutes typing this. Anyways, you did a great start, variables are super useful and they are important to master. I also suggest using clones and if statements, some of my games are built off clones.
@Skrelo
@Skrelo 2 года назад
That's really cool! Really nice that you got started at such a young age! You've got a lot more experience than most people right now! And thank you for the advice!
@BUNNYZLIVEZONTHEMOON
@BUNNYZLIVEZONTHEMOON 11 месяцев назад
I think I started in around 2nd grade, I didn't know what I was actually doing until like 3rd-4th grade lol
@Iced-Tea
@Iced-Tea 2 года назад
in case somebody hasn't mentioned it, you can drag and drop blocks into other sprites (this also works for sound and art). you can also drag and drop sprites, sounds, or art into the backpack for easy use between projects
@XDLittleyellowDuck
@XDLittleyellowDuck 2 года назад
I think you can learn SCRATCH and make a game in ONE HOUR. Because ONE HOUR just has a little bit different from the code part, the rest I think it's like SCRATCH.
@Cleacat
@Cleacat 2 года назад
Wow you made osi
@LuccVivid
@LuccVivid 2 года назад
The clone block is pretty interesting, you should mess around with it for awhile. (You can use a single sprite to make up to 300 clones at one time and give clones Ai using the "when I start as a clone" block[You create clones using the "create a clone of myself" block ) (I was about to go really in depth but I stopped myself)
@Shiba6442
@Shiba6442 Год назад
For starter game developers:scratch is the best option to start your developing project in, it is simple, easy and you don’t need to type a literal code
@jacketswae
@jacketswae 2 года назад
Do more scratch! I use it a lot and enjoy this content!
@Username-mp8jl
@Username-mp8jl 2 года назад
nice, as a scratch developer this is decent 6/10
@pastatheh7041
@pastatheh7041 2 года назад
I mean, it's pretty good for first project ngl, but definitely a below average if you really think about it. But that's still impressive for just one hour
@DogeVrofficial1
@DogeVrofficial1 2 года назад
PlatFormer!!!!! it took me so long to make one pls watch a griffpatch PlatFormer tutorial
@noobietubey
@noobietubey 10 месяцев назад
Scratch vocab Nodes = blocks While loops = repeat untill loops Sprites in Sprites = costumes Your welcome
@chilldogs1881
@chilldogs1881 2 года назад
You are actual amazing how on earth dont u have more subs?
@mateovega7174
@mateovega7174 2 года назад
"i wish you could duplicate sprites" ....dude u can do that just right click the sprite's box thing
@LuccVivid
@LuccVivid 2 года назад
MORE SCRATCH!
@themournin
@themournin 2 года назад
You should take the aim trainer game and add somewhat of a menu, and a memory mode where it gives you the order of where the targets will be and somehow incorporate memory into it, also you could make it more detailed if your up for it
@Isaiah_Gamer.18
@Isaiah_Gamer.18 2 года назад
hey you can actually copy a sprite by right clicking on one and clicking "duplicate"
@gab_solo2391
@gab_solo2391 2 года назад
hi
@flotentoten
@flotentoten 2 года назад
Cool
@randomperson5946
@randomperson5946 Год назад
You can go into the costumes tab and import a costume into that sprite instead of copying all the code over
@LifeOfBlakey
@LifeOfBlakey 2 года назад
try and make a 2d minecraft game in one week then make a tutorial please
@brianpham-ti6co
@brianpham-ti6co Год назад
you know that you can copy code over to other sprites by dragging the code into one of the sprites
@twooglz
@twooglz 2 года назад
Great video, also you can copy code form one sprite to another by just dragging that group of blocks (that duplicates it and doesn't move it)
@Skrelo
@Skrelo 2 года назад
Interesting! Thanks for letting me know! Will be useful for next time 😃
@ellgaming01
@ellgaming01 2 года назад
Hi there Skrelo! I'm just here to tell you - I've been using Scratch for a while now, and I can help you a little. I don't have an account, but I can tell you how to code some stuff.
@ellgaming01
@ellgaming01 2 года назад
An example if for a boat game. Make a backdrop by going to the backdrop and going to 'paint'. Brown being walls, blue being water and green being a finish line. Add more levels by going to the backdrop, going to 'paint' and then paint a new backdrop. Make a boat sprite. Be sure to give all of the backdrop's walls surrounded by brown so players can't just walk through like yaba daba doo. [start position] is not a variable. They are just things where you can type something in and make it start there. [SCORE] is a variable. Now, here's the code in the boat sprite: When green flag clicked: Go to x: [start position] y: [start position] set [SCORE] to 0 (forever: (if distance to mouse-pointer > 5 point towards mouse pointer move 1 steps) (if touching color brown (make sure it's the exact brown) Go to x: [start position] y: [start position] set [SCORE] to 0) (if touching color green (make sure it's the exact green) Go to x: [start position] y: [start position] change [SCORE] by 1 broadcast message next-level')) When I receive go-to-start Go to x: [start position] y: [start position] And in the backdrop: When green flag clicked: switch costume to costume1 When I receive next-level: (if not backdrop number = [NUMBER OF LEVELS YOU HAVE CREATED]: broadcast message go-to-start next backdrop else: stop all
@yannismorris4772
@yannismorris4772 2 года назад
I’m pretty sure you can also just change a sprite’s appearance by uploading the new costume directly to it
@bloonsfamily2066
@bloonsfamily2066 2 года назад
also,there's a chrome extension called scratch addons, which has a bunch of useful addons, including scratch equavalent of ctrl+c and ctrl+v
@Someunkownguy
@Someunkownguy 2 года назад
You can copy a sprite just right click a sprite the click duplicate
@ArethaN.A
@ArethaN.A Год назад
As a 9 year old. Scratch help me to know about code.
@nbshftr
@nbshftr 2 года назад
what microphone setup do you use?
@wyldstyledj3864
@wyldstyledj3864 2 года назад
great video
@Faulerbauer
@Faulerbauer 2 года назад
actuly you kann duplickate a sprite
@Skrelo
@Skrelo 2 года назад
Interesting, I'll keep that in mind for next time, thank you!
@pastatheh7041
@pastatheh7041 2 года назад
@@Skrelo I would recommend using clone blocks. They are really useful in pretty much every project. Clones can even store individual custom variables if you set the variable to "Only for this sprite" Also you probably heard it a lot already, but I really recommend using Scratch extension for addons for more functions and even customizability
@PizzaK1ng
@PizzaK1ng 2 года назад
I code in scratch even though I'm in elementary
@FinlandTheNBBQCreator
@FinlandTheNBBQCreator 2 года назад
Google Chrome dinosaur woah
@CoolScratcher
@CoolScratcher 2 года назад
as someone who's been using scratch for over eight years this hurts my soul but good video lol
@nasdfigol
@nasdfigol 2 года назад
pLaTfOrMeR gAmE Like Mario
@creeper322
@creeper322 2 года назад
What game is this and who made it?
@PlutodatGDgamer
@PlutodatGDgamer Год назад
"dis" is a cool vido also I can't say "e" in chat
@rogamer4009
@rogamer4009 2 года назад
hey scratch is really easy i learned it in 3 mins
@kryptyk64
@kryptyk64 2 года назад
Try following a griffpatch tutorial
@micheledicecioc
@micheledicecioc 11 месяцев назад
I learnt scratch in 1 min
@rchat42
@rchat42 2 года назад
i took more than 3 or 4 years experimenting and coding to understand scratch enough to make good projects
@WorldedGGGG
@WorldedGGGG 2 года назад
a 10 level platformer?
@caudat8238
@caudat8238 Год назад
Woah, great video mate!
@K4J1N4.mp3
@K4J1N4.mp3 2 года назад
says if a teen can do it doesn't know who griffpatch is
@gduc745
@gduc745 2 года назад
Node? NODE?!?!
@YesImAbby276
@YesImAbby276 2 года назад
Everything you were complaining about actually has a fix. For example when you wanted to change the ball to a target you could have gone into the costumes tab on the ball sprite and imported it as a costume instead of a new sprite.
@bb.cute.channel
@bb.cute.channel 2 года назад
Can you show us how to create a custom Text Input box with big easy-to-read fonts/style? The Scratch Ask text box is so tiny!!! The font is so small and hard to read. It will be good if the custom Text Input box can be saved in the Backpack so we can easily add it to many projects. 🙏🙏🙏
@redstrider6814
@redstrider6814 2 года назад
Griffpatch already made a tutorial if you want it
@pastatheh7041
@pastatheh7041 2 года назад
I don't think someone who just started using scratch could know how to do that
@MiMiBrokenbourgh
@MiMiBrokenbourgh 2 года назад
*_n o d e s_*
@Frogy8026
@Frogy8026 2 года назад
hi
@AlienDeveloperYT
@AlienDeveloperYT 2 года назад
The nodes are called blocks
@AlienDeveloperYT
@AlienDeveloperYT 2 года назад
As it’s a block programming language
@max_naz
@max_naz 2 года назад
oke
@ellgaming01
@ellgaming01 2 года назад
i replied when this comment were made 8 mins ago
@ellgaming01
@ellgaming01 2 года назад
in my look at least
@rchat42
@rchat42 2 года назад
scratch team’s tutorials will never help you with being good at scratch, sorry
@pastatheh7041
@pastatheh7041 2 года назад
I mean, they teach the most basic stuff ever, but I do agree. Griffpatch has some actual tutorials which are always worth checking it out
@Samuel-re3fn
@Samuel-re3fn 2 года назад
Right click to duplicate
@AstalWuzHere
@AstalWuzHere 2 года назад
Baby's first scratch game, I'm so proud :')
@ConernicusRex
@ConernicusRex 2 года назад
The chart that showed you it was “popular” was actually just showing you the ages of the kids who get it as homework. It’s not popular.
Далее
The Making of Karlson 2D (Game)
11:41
Просмотров 6 млн
ChatGPT Makes a Scratch Game
10:30
Просмотров 1 млн
Шоколадная девочка
00:23
Просмотров 821 тыс.
6 Developers make a Scratch Game Without Communicating
15:00
Pro game dev tries Scratch
5:11
Просмотров 32 тыс.
I Became a Scratch Developer for a Day
9:17
Просмотров 168 тыс.
Voxtopolis - Ray Traced voxels in Unity
2:28
Просмотров 5 тыс.
NOOB vs PRO vs HACKER Scratch Game
11:07
Просмотров 393 тыс.
BANNED Minecraft Mods...
16:39
Просмотров 341 тыс.
I Tried Learning SCRATCH In 24 Hours...
4:24
Просмотров 14 тыс.
Making a Fake Multiplayer .io Game
11:03
Просмотров 152 тыс.
I made a triangle! - SM64 in Scratch part 1
17:58
Просмотров 405 тыс.
Expert Game Dev Tries Scratch for the First Time
9:33
Шоколадная девочка
00:23
Просмотров 821 тыс.