I remade the WORST scratch game...

2024 ж. 8 Қаң.
216 350 Рет қаралды

In this video, I take a trip down memory lane and revisit the first (and worst) game I ever made on Scratch. It was a simple game, but it was the start of my journey as a game developer. I decided to challenge myself and try to remake the game with all the knowledge I've gained over the years. Join me as I go through the process of redesigning the game, adding new features, and improving the overall gameplay.
________________
Thanks to @griffpatch and @ZonxScratch, as I used some of their code in this video.
The game: scratch.mit.edu/projects/9452...
________________
Click this link, or Gobo will destroy your family. / @bigfatsnakeviiper
More than 99% of crimes happen to people not subscribed to this channel. So, to protect yourself and your loved ones, consider subscribing.
Liked this video? Check this out next "I REMADE 10 Games in 10 MINUTES Using SCRATCH": • I REMADE 10 Games in 1...
_______________
#games #devlog #scratch #coding #game #devlogs #howtomakesmoothmovementinscratchtheeasyway #whyyourscratchgamesflopandtheeasysolutions #programming #scratchcat #viiperrr #programmer #program #blockcoding #videogame #theeasiestwaytomakeaplatformeronscratch #coder #devlogging #program #programs #scratcher #kidslearning #stem #stemeducation #learntocode #scratchtips #techforkids #scratchcreativity #digitalskills #onlinecoding #creativecoding #codinggames #digitalprogramming #codeplayground #codeinspiration #scratchgamecoding #gamecoding #gamescoding #scratchprogramming #scratchcoding #scratchcodinggames #coderskills #scratch

Пікірлер
  • Comment: duck

    @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • duck

      @EggtheEgg12@EggtheEgg124 ай бұрын
    • Guys make a chain with your favorite animal, I’ll go first Cat

      @EggtheEgg12@EggtheEgg124 ай бұрын
    • ​@@EggtheEgg12 Dog

      @girrajkishoreseth9910@girrajkishoreseth99104 ай бұрын
    • Fox

      @waylonstudios@waylonstudios4 ай бұрын
    • duck

      @klozy2@klozy24 ай бұрын
  • OMG I had no idea but i played this game when i noticed there was a tree i was like ayo i played that game bro keep up the great work and also i hope you can make more fun games

    @RYANDABEZ@RYANDABEZ2 ай бұрын
    • Thanks!

      @bigfatsnakeviiper@bigfatsnakeviiper2 ай бұрын
    • I played the game in 2019 lol it wasn't the worst trust me

      @DylanThompson-ir5vq@DylanThompson-ir5vq2 күн бұрын
  • Seeing the code from the og project and your code i think you improved. Back then you didnt even used cñvariables, now you use a EXTENSIVE use of variables. Great Job!

    @WiiPhone-ef4hm@WiiPhone-ef4hmАй бұрын
  • The coins should be eggs because the chicken is supposed to get the three eggs

    @rayhammett7327@rayhammett73272 ай бұрын
    • No because he's sapost to get them at the end of the game

      @familycastle2787@familycastle27878 күн бұрын
  • The hardest level by far was level 8. Took me hours

    @sodabottleman@sodabottleman4 ай бұрын
    • Yeah ikr it sucked

      @besteeez_sweat3780@besteeez_sweat37803 ай бұрын
    • 10 was even harderrrrrrrrrrrrrrhrrrrbryrrfhgeycebefthheyghvgrehcgreufrggehfgreyvshufhetgvthetufrvgsfvgrdihfdgyuefffeuycgfuybcfrehugfef😭😭😭😭😭

      @zoranradakovic2199@zoranradakovic21992 ай бұрын
    • Yeah it was really hard.

      @ThatonePNG@ThatonePNG2 ай бұрын
    • it took me 100+ years to complete, and im not even born yet!

      @LittleSpoon5@LittleSpoon52 ай бұрын
    • I spent hours on it aswell. I just almost quit the game out of rage

      @NumberFifteen15@NumberFifteen15Ай бұрын
  • im a unity and unreal dev but this took me back I forgot about scratch

    @iambored_vr@iambored_vr4 ай бұрын
  • Very cool, makes me think of the good old Pokemon soul silver. You should really get more credit for what you do!

    @italiaansekrab1902@italiaansekrab19022 ай бұрын
  • The ducky is supposed to be smaller than the fox... I'm pretty sure.

    @MASTERCRAFTER23@MASTERCRAFTER232 ай бұрын
  • congrats on 1k subs

    @frosstvr@frosstvr4 ай бұрын
    • 🎉

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • In only 2 months he got 4K more

      @Whats_my_handle_mjep@Whats_my_handle_mjepАй бұрын
  • here's how i would go about recreating the game: I'm thinking something a little bit like vampire survivors, but more forestey theme. this might change later but it's the basic premise. to get started on the code, i would create multiple lists for the enemy X, Y, Type, and Health. this allows me to store up to 200,000 (Two-Hundred-Thousand) different enemies! which is a lot more efficient than duplicating the sprites over and over again like you were doing. Next, i'd make a placeholder sprite just to test how, and if it works. i'd use pen stamping to place all the enemies to the screen, looping through the list and going to all of the positions, drawing them to the screen. for movement, make the enemies change X and Y values using trigonometry. (Point in direction: (arcTan(relative Y / relative X) * {relative Y > 0})) then change the value of X and Y with cos and sin, by the direction, multiplied by how fast you want them to go. after that; collision. this is possibly the hardest and most aggravating part. take what i say with a grain of salt because i might say something wrong here. the amount of collisions you would have to detect is N² (where N is the number of enemies there are.) what we could potentially do is create 2 new lists for chunk X and chunk Y. this splits the possible places where it has to check tenfold. just make each chunk a little bigger than the biggest enemy you have. then check all the chunks around it, including the chunk it's in, for any other enemies. this makes the problem a lot less computationally expensive, because next up is............ ..............COLIDING THEM. once you know two enemies are within range of each other, use the Pythagorean theorem to calculate the distance. (yes i'm talking about the thing you said you'd never ever need irl, yet here we are) the normal Pythagorean theorem goes like this: A²+B²=C² we can modify it to fit our needs. √((enemy1X - enemy2X)²+(enemy1Y - enemy2Y)²) = distance. now we need 2 more variables. NX = dist/EnemyDistX NY = dist/EnemyDistY those two variables give us the cosine, and sine values that we need, to find how to move the enemies out of each other using a single move. if distance < enemy1Scale+enemy2Scale, then we have a collision. otherwise we check the next one. then we find the amount that they intersect, using some more simple math. then multiplying that amount by NX and NY, to find how to move it. divide it by 2, and use the same force, but negatively on the the other enemy. and hopefully the collision works!. that's the base for how it should work after that, you could add more things to the game, like leveling up skills or new weapons. increase waves or new bosses. adding an art style, new enemies, new everything. really anything you can "imagine, program, and share"

    @skullcat324@skullcat3244 ай бұрын
    • wait till you hear about the "if touching" block. But seriously this is very helpful in any non-scratch setting as well. I will definetly write this down.

      @villagecool6409@villagecool64094 ай бұрын
    • I feel like this is from chat gpt

      @SeamusMusicMaker@SeamusMusicMaker4 ай бұрын
    • @@villagecool6409I'm guessing you've never used the pen extension before or aren't experienced enough but the "if touching" block only works for clones and sprites, not with the pen.

      @EpicCodingGamer@EpicCodingGamer4 ай бұрын
    • ​@@SeamusMusicMakerIt probably isn't, most of the equations are fairly simple if you've studied them-maybe around high school level

      @EpicCodingGamer@EpicCodingGamer4 ай бұрын
    • @@EpicCodingGamer ohhh, I honestly forgot they mention the use of the pen extension 💀 that makes more sense

      @villagecool6409@villagecool64094 ай бұрын
  • 1K Congrats! You're still underrated ;D

    @DragonsAreCoolScratch@DragonsAreCoolScratch4 ай бұрын
    • Oh thanks!

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • Yes.

      @jaydentplays7485@jaydentplays74854 ай бұрын
    • What does even underrated mean?

      @EuAndrew11231@EuAndrew112313 ай бұрын
    • @@bigfatsnakeviiperITS 2K NOWWW ALSO IM NEWW❤❤

      @OopsieDaisy625@OopsieDaisy6253 ай бұрын
    • ​@@EuAndrew11231 good

      @victorc7265@victorc7265Ай бұрын
  • if i remade my first game i would be making a 6 year old game about nothing.

    @cirkulx@cirkulx4 ай бұрын
    • if I did, then i would be making an epic bossfight, between a bird person, and a corrupt wizard, in front of a crumbling castle.

      @skullcat324@skullcat3244 ай бұрын
    • Same

      @Kompressor808@Kompressor8083 ай бұрын
    • I know same

      @Justgobrooooyah@Justgobrooooyah2 ай бұрын
  • 4:07 I don't know that behavior looks pretty good to me. Maybe if they spawn on a tree then they can start circling around it which would put the illusion of depth on full display as they will constantly switch from being above the tree to below the tree and back again.

    @flameofthephoenix8395@flameofthephoenix83959 күн бұрын
  • 0:42 Interesting! I re-made my first game a little while ago, and it was quite similar, one player was a bat and the other a ladybug, it was also about one character chasing another.

    @flameofthephoenix8395@flameofthephoenix83959 күн бұрын
    • 0:56 Luckily, I already had animations and both characters could move in 4 directions.

      @flameofthephoenix8395@flameofthephoenix83959 күн бұрын
  • Congrats on 1k!

    @TechWiz0001@TechWiz00014 ай бұрын
    • 🎉

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
  • Duck. It's a wery good video! I loved it!

    @adriennnagy7982@adriennnagy79824 ай бұрын
  • Cool, it’s fun to play too, although it’s rather short.👍

    @Goldwings42@Goldwings423 ай бұрын
  • Duck duck fox. also you deserve more subscribers. 4k views in one day and almost none of them subscribed. or liked. its really sad. i hope everyone who watch's subscribes and likes in future. i love scratch youtubers so i cant wait for more scratch vids.(and if you do (i've just subbed) your other content)

    @smallhead9685@smallhead96854 ай бұрын
    • Thanks!

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
  • If you want to see the worst scratch game, you need to see demented scratch cats goofy ahh adventure

    @Epic-Wiggly-worm@Epic-Wiggly-worm3 ай бұрын
  • To fix the tree problem, did you try adding a wait 0.1 seconds before it spawns the tree, and make sure that the fox starts to move befor the tree spawns?

    @jabin8153@jabin81534 ай бұрын
    • Yeah I did. I thought it would work too but for some reason it didn't 😥

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • did you try a "wait 0.1 seconds" and then a "wait until not touching fox" and then a second "wait 0.1 seconds"? @@bigfatsnakeviiper

      @noyz-anything@noyz-anything3 ай бұрын
    • @@bigfatsnakeviiper You could've instead had the foxes keep changing location until they're no longer touching a tree before they spawn.

      @LuccaDoesStuff@LuccaDoesStuffАй бұрын
  • yooo nice vid

    @Bed_Tom@Bed_Tom4 ай бұрын
    • Thanks

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
  • Yay 1K subscribers!!

    @EggtheEgg12@EggtheEgg124 ай бұрын
    • 🎉

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • And a month later, 4K!!!

      @CruisingwithCaleb@CruisingwithCaleb2 ай бұрын
  • I played this in school and I just started watching scratch videos again and I found this one.

    @Gtowneb2012@Gtowneb2012Ай бұрын
  • why you have 3 fox sprites with same script, instead using clones?

    @MKloner@MKloner4 ай бұрын
    • I honestly got kind of lazy, so I just took the easy route.

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • ok@@bigfatsnakeviiper

      @MKloner@MKloner4 ай бұрын
    • Because clones are annoying

      @otomatik48@otomatik4829 күн бұрын
    • @@otomatik48 but its better then million sprites

      @MKloner@MKloner28 күн бұрын
  • You should have made the story that the duck walked to a lemon stand And he said to the man running the stand Hey! Ba ba ba got any grapes

    @polaranimations3780@polaranimations378013 күн бұрын
  • EXTREMELY HIGH EDITING QUALITY. Very Underated.

    @KRXZY_rektt@KRXZY_rektt4 ай бұрын
    • Much appreciated!

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • *Underrated

      @mikevazovsky2532@mikevazovsky25324 ай бұрын
    • ​@@bigfatsnakeviiperviiper. Underatted means bad. Don't listen to haters. Just move on. Btw I like your content

      @EuAndrew11231@EuAndrew112314 ай бұрын
    • @@EuAndrew11231 cant tell if ur joking or not

      @aurastick3361@aurastick33614 ай бұрын
    • ​@TestAccount241 are you dumb? Underrated means it needs more attention since the quality of the video deserves more likes/views whats wrong with u go back to school

      @Vorvet@Vorvet3 ай бұрын
  • Nice 👍 I have definitely improved

    @LemmonTea@LemmonTea4 ай бұрын
  • Sir how did you make the green accents in the editor like in the navbar? I really like it.

    @girrajkishoreseth9910@girrajkishoreseth99104 ай бұрын
    • I use Scratch addons. Here is the link if you are interested. chrome.google.com/webstore/detail/scratch-addons/fbeffbjdlemaoicjdapfpikkikjoneco

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • Sir how to change it to green because in the addon "editor dark mode and customisable colors", I can only choose presets.

      @girrajkishoreseth9910@girrajkishoreseth99104 ай бұрын
    • There should be an option to choose your own colors

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • Thanks sir for the reply, but there is no option to choose other than presets, sorry for bothering.

      @girrajkishoreseth9910@girrajkishoreseth99104 ай бұрын
  • Make a boss fox

    @soggy8444@soggy84444 ай бұрын
  • I’m currently making my first scratch game, and I hope it won’t look like garbage,

    @Roni.Animations@Roni.Animations2 күн бұрын
  • the funny thing is i played this game on scratch before i ever saw this video

    @blitzmoo7185@blitzmoo71854 ай бұрын
  • Viiperrr Your game is amazing as soon as i saw this video i knew i had to try it. i also beat all fifteen levels and i only died three times because of the night time mode. i think you should continue making scratch games because maybe you could improve even more and you could make harder and better games. im not saying that duck run is a bad game instead its really awesome one day im gonna make a scratch game and become just as good as you are right now. anyways thats all i have to say about duck its a really awesome game so i recommend every one should try this game. Game Name:Duck Run the game also has really cool detail. BYYYEEEEEE

    @akyrie-kingespino7018@akyrie-kingespino70189 күн бұрын
    • and one more thing i love the backround music and sfx

      @akyrie-kingespino7018@akyrie-kingespino70189 күн бұрын
  • now THIS is not terrible

    @PLE2K23PGD@PLE2K23PGD4 ай бұрын
  • Btw, love your vids!!

    @ewmbricksshorts@ewmbricksshortsАй бұрын
  • Hey viiperr. I really like your videos and I’ve watched a couple and they’re really good quality. I haven’t made any videos yet but I’d like to be able to make videos like you and maybe to kickstart that, maybe you and I could do something and make a video together??

    @shxdow2510@shxdow25102 ай бұрын
  • how do u changr colour of the scratch ui?

    @AverageFerrariEnjoyer@AverageFerrariEnjoyer16 күн бұрын
  • The movement code here is crazy! 0:35 how does he do that!!!!!

    @Sounndddd133@Sounndddd13313 күн бұрын
  • 1:26 Savescreens be like:

    @mmmykoanimations@mmmykoanimationsАй бұрын
  • you really improved.

    @SweetLullaby12345@SweetLullaby123454 ай бұрын
    • thanks!

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
  • Underrated youtuber honestly

    @SlimFromCaseohsGroceryStore.@SlimFromCaseohsGroceryStore.3 ай бұрын
  • couldn’t of you used. ()= in loop block. Use in tree sprite (Repeat until distance to fox and duck > 90 If distance to fox sprite < 90 go to random place)

    @Mangsterade@MangsteradeКүн бұрын
  • The actual worst is move the scratch cat and the letter e simulator

    @trollsansofficial@trollsansofficial2 ай бұрын
  • You might not see this, but one way to make colison easier is to edot a small piece of the duck and name it, then go over to the fox and put it when touching name to do whatever

    @ZmanGaming12@ZmanGaming123 ай бұрын
  • DUDE I PLAYED THIS GAME BEFORE I SAW THIS AND WHEN I SAW THAT DUCK ART MY BALLS DROPED

    @FloweyTheGodGuru@FloweyTheGodGuru3 ай бұрын
    • I like your profile

      @Help-me-he_has-traped-me-imSad@Help-me-he_has-traped-me-imSad12 күн бұрын
  • 3:18 killing three birds with a falling tree would work though.... if it's big enough

    @smallhead9685@smallhead96854 ай бұрын
    • lol

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
  • Viperrr can you make a mobile version cause im in mobile

    @anthonymosqueda-mendoza5076@anthonymosqueda-mendoza50764 ай бұрын
  • It took me 100000 attempts to beat level 8

    @Jay_Jam@Jay_Jam2 ай бұрын
  • You should make a part 2 where Bob's Eggs hatch and the chicks run away so he needs to find his chicks

    @KubaPuppy@KubaPuppy3 ай бұрын
  • Hey idk if this a lot to ask but can you make so you can play on mobile

    @Ilovemycat21234@Ilovemycat212343 ай бұрын
  • I Tried It On Scratch And Lvl 8 Was So HARD , I Was Stuck On IT For A WEEK . Also, ALL HAIL THE DUCK

    @MCgale8888@MCgale88882 ай бұрын
  • 2:08 Stamping the sprites would solve this problem, as then you could have the collision be between two proxy sprites that don't need to layer properly. Also, what was the point of layering the sprites if the only sprites on screen will never actually touch?

    @flameofthephoenix8395@flameofthephoenix83959 күн бұрын
    • They do touch lol

      @bigfatsnakeviiper@bigfatsnakeviiper6 күн бұрын
    • @@bigfatsnakeviiper At that point in the video I had been under the assumption that there would only ever be one fox and one duck, so I figured that if they ever touched, they would disappear before layering could happen.

      @flameofthephoenix8395@flameofthephoenix83956 күн бұрын
  • Obviously the old one is so much better, it has smoother graphics, and it doesn't have animations, so if you have a bad computer you can still play it without lagging (sarcasm, this is actually very nice)

    @stefantrajkov69420@stefantrajkov694203 ай бұрын
  • I’m currently working on a top down game in scratch in which there is a sprinting mechanic but for some reason up-left and down-right didn’t work while sprinting but walking it works like normal I eventually just decided that I would not have diagonal walking and running. And if anyone knows how to fix the bug I would be appreciated=) and for anyone wondering up right is x:8 y:8 up left is x:-8 y:8 down right is x:8 y:-8 and down left is x:-8 y:-8 and I’ve tried changing the speed

    @joescraft123@joescraft1234 ай бұрын
    • Just make the movement speed a variable, and apply that to the script. So if up pressed, change your by “variable” do that for the four arrow keys, then make a forever loop that says if key E pressed (It doesn’t have to be e) then set “variable” to 12, else set “variable” to 8

      @rennugunner@rennugunner4 ай бұрын
  • 4:55 Interesting, I just forgot to do that.

    @flameofthephoenix8395@flameofthephoenix83959 күн бұрын
  • I beg you, replace the coins with loafs of bread

    @Me-ji7uq@Me-ji7uq4 ай бұрын
  • How do you get the transparent setting in the costumes also how do you get that pause button

    @Another_Reyna@Another_Reyna4 ай бұрын
    • Those two features can be found in Scratch Addons

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • @@bigfatsnakeviiper what are the addons? And how do I install them

      @Another_Reyna@Another_Reyna4 ай бұрын
    • This is the link to the addons. They are a browser extention. chrome.google.com/webstore/detail/scratch-addons/fbeffbjdlemaoicjdapfpikkikjoneco

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
    • @@bigfatsnakeviiper thank you :)

      @Another_Reyna@Another_Reyna4 ай бұрын
    • ​@@Another_Reyna Very cool!

      @ScratchAddons@ScratchAddons3 ай бұрын
  • The subscribe button has a special animation when he said to Subscribe to Viper

    @SkittleOffline@SkittleOffline16 күн бұрын
  • There was a guy on my school that the Best thing he had made in his entire life on scratch was a rainbow friends static image wen u clicked on it it made diferent poses

    @LkplaysYT@LkplaysYT27 күн бұрын
  • just wait till he sees earwigs in the drain by turtlecode9380

    @user-wq8rn8uz5h@user-wq8rn8uz5hАй бұрын
  • Have you used tynker?

    @mikesean5377@mikesean53773 ай бұрын
  • quacks me up! 🦆😂 #Duck

    @RandomlyNamedChannel@RandomlyNamedChannel4 ай бұрын
  • Im making a grand theft auto game in scratch and its been a year since I made it Im still working on it to this day

    @Back2_bAck@Back2_bAck2 ай бұрын
  • which app do u use on pc for editing?

    @IndianProYT@IndianProYT3 ай бұрын
    • I use CapCut

      @bigfatsnakeviiper@bigfatsnakeviiper3 ай бұрын
  • 0:59 look at the subscribe button when he says subscribe! [it’s just a KZhead secret]

    @Republicofcelestoria@Republicofcelestoria8 күн бұрын
  • dude you are so underrated

    @user-np1kk8fn6m@user-np1kk8fn6m3 ай бұрын
  • Awfully sounds like luigi circuit

    @redworldrebirth@redworldrebirth2 ай бұрын
  • Which font did you use in your game? Or you've created one in scratch?

    @lukes2030@lukes20303 ай бұрын
    • I just used the pixel font

      @bigfatsnakeviiper@bigfatsnakeviiper3 ай бұрын
    • Too late, i discovered when i was making a remix of your game: "Duck Run 2.0", but think you anyway

      @lukes2030@lukes20303 ай бұрын
    • Too late, i discovered when i was making a remix of your game: "Duck Run 2.0", but thank you anyway

      @lukes2030@lukes20303 ай бұрын
  • you should try make duck/fox skins

    @shamuadias@shamuadias17 күн бұрын
  • What if the music changed for the night levels?

    @moonradio6962@moonradio69624 ай бұрын
    • Good idea

      @bigfatsnakeviiper@bigfatsnakeviiper4 ай бұрын
  • a m a z i n g ❤ 🎉 🎉 🎉

    @Ironyum99@Ironyum994 ай бұрын
  • uh, I fought you said you make an AI voice for the game's intro not text?

    @GottaGoFast-vn4us@GottaGoFast-vn4us2 ай бұрын
  • This game gives me mobile game vibe

    @ajtv_ag@ajtv_ag4 ай бұрын
  • 4:43 Don’t mind this

    @spencer8641@spencer86414 ай бұрын
  • Also I love your Chanel

    @r_and_a433@r_and_a4334 ай бұрын
  • Underrated

    @jaimerodgen3433@jaimerodgen34333 ай бұрын
  • I’ve probably got the worst scratch games ngl 😭

    @Mysterious_robloxian@Mysterious_robloxian14 күн бұрын
  • uhmm hi can you link this scratch i want to edit it to make it mobile friendly😂i juet started yesterday

    @ronjharedrobles2960@ronjharedrobles29603 ай бұрын
    • the link is in the description

      @bigfatsnakeviiper@bigfatsnakeviiper3 ай бұрын
  • I'm this level today and it was fun !!!!

    @user-ke3nk7fz7d@user-ke3nk7fz7d3 ай бұрын
  • Level 8 and 10 are too hard

    @fatidiot8822@fatidiot8822Ай бұрын
  • i found an inaccuracy with the video! the worst scratch game is something i would make :D

    @aurastick3361@aurastick33614 ай бұрын
  • 0:01 stupid scratch cat in the trash

    @reshmawasil@reshmawasil18 күн бұрын
  • 2:03 📸📸📸📸📸📸📸🦶🦶👣

    @AZN_ASHLEY10@AZN_ASHLEY1016 күн бұрын
    • Posting this video was my biggest mistake

      @bigfatsnakeviiper@bigfatsnakeviiper12 күн бұрын
  • My worst scratch game is a spinning cat

    @Me_a_name_@Me_a_name_3 ай бұрын
  • i need ur help

    @Shinous.@Shinous.4 ай бұрын
    • With what I can help even though I am 2 months late

      @Onehandmonkes@OnehandmonkesАй бұрын
    • Ur need i help

      @bendytubegaming@bendytubegamingАй бұрын
    • @@bendytubegaming with what?

      @Onehandmonkes@OnehandmonkesАй бұрын
    • @@Onehandmonkes its a joke

      @bendytubegaming@bendytubegamingАй бұрын
  • 4:32 diuzlaik

    @hellopaws34207@hellopaws3420729 күн бұрын
  • What is gobo now vipper?

    @Ismael821@Ismael8214 ай бұрын
  • Green scratch?

    @YoshYoshrik444@YoshYoshrik4442 ай бұрын
  • Smash that like button slays Duck❤

    @PhoenixGal-hw9ok@PhoenixGal-hw9okАй бұрын
  • How is it green

    @joshuaperkins2412@joshuaperkins24123 ай бұрын
  • subbed after this vid

    @goofydogeXD@goofydogeXD24 күн бұрын
  • 4:11 bro

    @DaStranded64@DaStranded64Ай бұрын
    • ?

      @bigfatsnakeviiper@bigfatsnakeviiperАй бұрын
  • Bro you could have made it so the code says for 0.5 seconds if fox is touching tree then move tree

    @Myoculusname-ello-@Myoculusname-ello-19 күн бұрын
    • It didn't work when I tried it 😭

      @bigfatsnakeviiper@bigfatsnakeviiper19 күн бұрын
    • @@bigfatsnakeviiper o

      @Myoculusname-ello-@Myoculusname-ello-19 күн бұрын
  • This is the best video

    @sohgyy@sohgyy3 ай бұрын
  • duck momment

    @ONETPOT2024@ONETPOT20244 ай бұрын
  • duck duck duck duck!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    @pamelamoodley4328@pamelamoodley43282 ай бұрын
  • Can you try scratch Jr And here: duck

    @TyraPyraVR@TyraPyraVR16 күн бұрын
  • Game is Too Hard im stuck on level 1

    @dsen.uiguz-@dsen.uiguz-17 сағат бұрын
  • BRO WHY U MADE LEVEL 8 SO HARD

    @DaReal_M.Ebrahim@DaReal_M.Ebrahim25 күн бұрын
  • Why do the foxes have only 2 legs?

    @vrman6955@vrman69552 ай бұрын
    • shhhhh

      @bigfatsnakeviiper@bigfatsnakeviiper2 ай бұрын
  • “waste your time, which is exactly what I need” *proceeds to get a 1 minute unskippable ad*

    @juandt1234@juandt12342 ай бұрын
KZhead