Making Geometry Dash In Roblox

Поделиться
HTML-код
  • Опубликовано: 9 янв 2024
  • Kinda boring video for this one
    Game: www.roblox.com/games/15761380...
    Group: www.roblox.com/groups/3314533...

Комментарии • 420

  • @JimboRibz
    @JimboRibz  5 месяцев назад +158

    The Geometry Dash Community Is Currently Out To Kill Me
    I have been kidnapped and forced to make level 2 and 3 easier for food

  • @misha_bloxor6549
    @misha_bloxor6549 5 месяцев назад +39

    Now need to make roblox in geometry dash

    • @Geodasher4608
      @Geodasher4608 5 месяцев назад +1

      Yessir

    • @faz6428
      @faz6428 5 месяцев назад +1

      Spu7nix has been summoned

    • @Gabethedoggo
      @Gabethedoggo 5 месяцев назад

      we already have ToH in gd

    • @Kyle21371
      @Kyle21371 4 месяца назад

      ​@@Gabethedoggo? What level

    • @Lolipop_2763
      @Lolipop_2763 4 месяца назад +2

      With the new gradient feature that could be possible

  • @luksjutuber3558
    @luksjutuber3558 5 месяцев назад +55

    The game is pretty good but the hitboxes can be a bit annoying, also for some reason sometimes jumping is delayed for me whenever i press spacebar. Otherwise i think you did a good job with it.
    UPDATE: booster pads for some reason sometimes just don't work or launch you too late, causing you to die, the jump between those two spikes in lvl 2 is a bit too hard and i'd recommend making it wider, also sometimes your cubes just randomly gets stuck to an invisible hitbox and dies to it.

  • @ChaoDee
    @ChaoDee 5 месяцев назад +11

    also sometimes pads don't work, you fly into the sky if you hit the edge of a block and many parts of the levels are like extreme demon difficulty just because of the physics + the hitbox

  • @dehapy
    @dehapy 5 месяцев назад +2

    I had this idea w a while back but wasn’t really sure how to make it. Nice vid bro 🔥

  • @johnlhendelfinado8970
    @johnlhendelfinado8970 5 месяцев назад

    Love your video games. i played all of your games it was fun. jetpack joyriding was the most hardest to me. keep making games and videos ❤

  • @Veddy1674
    @Veddy1674 5 месяцев назад +15

    2:43 an AWESOME touch event alternative (for spheric shapes) is magnitude, exactly, you simply calculate the distance from the centre of the pad to any point in the circumference, (basically calculate radius lmao), you can use temporary attachments for that too, then you just make a localscript, and with the help of runservice.heartbeat() (yup, unluckely u have to check every frame, isn't the best but the touch timing is perfect), then you just get character root, and now talking about the radius thing of before, to do that, you basically do:
    local radius = (SphereAnyBorderPointPosition - SphereCenterPosition).Magnitude
    to get the distance between the player (specifically, player root), you do:
    local distance = SphereCenterPosition - root.Position
    if distance >= radius then
    -- player is outside the sphere/not touching it
    else
    -- player is touching/inside the sphere
    end
    btw sorry for bad english, not my main language :sob:

    • @Didyus
      @Didyus 5 месяцев назад +1

      Portly, abrupt Bart Simeon plodded through the citadel with a bearing of tension and anger that was like a tinderbox lying by a roadside waiting for a careless motorist to toss his or her cigarette butt out the window, most likely the passenger if the container lay on the right side of the road, or perhaps the driver with a brusque flick to the left, unless of course if they were in England, in which case it would be the opposite. - Anthony Hahn
      I knew that dame was damaged goods when she first sauntered in, and I don't mean lightly scratched and dented goods that a reputable merchant like Home Depot might offer in a clearly marked end display sale; no, she was more like the kind of flashy trashy plastic knockoff that always carries a child-choking hazard that no self-respecting 11-year-old Chinese sweat shop kids would ever call theirs.
      But pardon me great sire, my English vocabularic comprehension is not quite up to perfection.

    • @Veddy1674
      @Veddy1674 5 месяцев назад +1

      @@Didyus well, honestly my english grades are almost all above 8.5/10 soo.. i just said that to justify myself in case of dumb mistakes lmao

    • @LateLucas
      @LateLucas 4 месяца назад +1

      Awesome, people that actually know! Magnitude is correct

    • @Veddy1674
      @Veddy1674 4 месяца назад

      @@LateLucas not always its the best option though, if an interaction occurs rarely in the game then its maybe better to use touched, touchend and few of debounces depending on the case.. and to everyone reading this, you should use magnitude check inside a runservice, NOT a dum while true loop like youtuber kids teach nowaday, and NOT coroutines.. (while loops in new coroutines) because.. it still gives the while true lag, and the script and magnitude check should be in the object and not in the player, but that's just for better organisation

    • @LateLucas
      @LateLucas 4 месяца назад

      @Veddy1674 true, thanks for clarifying. and yes I agree with you

  • @LegoPieces_
    @LegoPieces_ 5 месяцев назад +5

    The jump pad should need another part inside them called "Hitbox"
    1. *Create a new part*
    *Weld them to the jump pad*
    2. *Use run service to update jump pad hitbox everytime or you could use while loops*
    3. *Then make the hitbox jumps the block*
    This is useful, because the touched event are slightly slow, run service are extremely fast it's good for updating stuff!

  • @CodeWizard10
    @CodeWizard10 2 дня назад

    Great video! And you can use region3 instead od Touched event

  • @bobobo6rel
    @bobobo6rel 5 месяцев назад +5

    bugs: the response of control is very delayed, and it’s not my lag because i have a good phone, the delay is around 0.3-0.8 seconds and makes some jumps very hard especially the last level, this lag also applies to jump pads and sometimes it wont even register the touch, making the second level which has many of them rng based.
    when jumping too early on a block, it flings you upward and sometimes kills you.
    in the ship mode, touching the ceiling without spikes still kills you.
    because of the physics in this game, jumping on time can still be a death which is very visible in the last level.
    the hitboxes are also kind of unfair, you think you can make the jump but an odd hitbox kills you, my solution for the spike is to create a model with a small square, then add the original spike model on the outside with “can collide” off, then change the code to “if the player collides with the small box (instead of the whole model itself) then kill the player” just like how a real hitbox works!

  • @AireX72_GD
    @AireX72_GD 5 месяцев назад

    it's kinda sick tbh i like it a lot good job maan

  • @veryepoc6949
    @veryepoc6949 5 месяцев назад +1

    Been waitin for this!

  • @CopperCogStudio
    @CopperCogStudio 5 месяцев назад

    the orb problem can easily be solved by making a system where nearby orbs cast a ray every frame towards the cube's position, then when you press jump, you can check if orbs are nearby to jump again, additionally you can add something like coyote time to make them feel more responsive.

  • @saturn893
    @saturn893 5 месяцев назад

    your channel is so underrated how is it not at 100k yet

  • @RendumLiptang
    @RendumLiptang 5 месяцев назад +7

    2:53 You are 100% right, I sometimes just can’t continue my game. I’d recommend creating custom physics for better collision detection. Anyways, it is surprisingly stable.

    • @justsomeguy8597
      @justsomeguy8597 5 месяцев назад

      raycasts are my new best friend after making physical bullets in roblox

    • @darkbentoy
      @darkbentoy 5 месяцев назад

      🤓

    • @RendumLiptang
      @RendumLiptang 5 месяцев назад

      @@darkbentoy People when someone knows how to make a game: N3rDDD 🤓🤓🤓🤓🤓🤓

    • @justsomeguy8597
      @justsomeguy8597 5 месяцев назад

      @@darkbentoy watching a game dev video replying nerd emoji to comments what you expect lil buddy

    • @darkbentoy
      @darkbentoy 5 месяцев назад

      @@RendumLiptang 🤓

  • @Sonicthespeedster71
    @Sonicthespeedster71 5 месяцев назад

    bro what is the song you used called for the first level bro imma finna listen to that 24/7

  • @rhexicon
    @rhexicon 5 месяцев назад

    i recommend raycasting as the alternative to touch events, especially since they released a new type of raycasting, shapecasting!

  • @zacchahboun4083
    @zacchahboun4083 5 месяцев назад +1

    I love the slaughterhouse jump in the second level

  • @XcreatorGoal
    @XcreatorGoal Месяц назад +1

    I just found about your channel, you got some real good humor man

  • @Zemper31
    @Zemper31 5 месяцев назад

    hey jimbo.im trying to become game dev but i just started and i making models(normal)so can i try help you?

  • @ScarfyTarfy
    @ScarfyTarfy 5 месяцев назад +2

    I'm literally sitting here for an hour thinking about how to make something like this.

  • @xastralmars
    @xastralmars 5 месяцев назад +1

    I kind of feel like I can add on to this game, could you make it uncopylocked, because I think that the game engine is pretty good

  • @44Hd22
    @44Hd22 5 месяцев назад +17

    1:07 the GD jumping animation feels like it requires math.
    1:44 the GD spike hitboxes are very weird but really smart.
    2:42 maybe you could add an event that adds extra velocity while you are in the area of the orb or just increase jump height temporarily.
    3:19 the ship has complex momentum I think but I never used roblox studio

    • @silozed
      @silozed 5 месяцев назад +2

      🤓

    • @44Hd22
      @44Hd22 5 месяцев назад +4

      @@silozed 🤓🤓🧐

    • @bendyfan2006
      @bendyfan2006 5 месяцев назад

      @@silozed shut up

  • @TheColorOrang
    @TheColorOrang 5 месяцев назад +27

    my point stands

  • @Flick910
    @Flick910 5 месяцев назад

    In the ship part, your like playing flappy bird lol

  • @puggersxd_7420
    @puggersxd_7420 Месяц назад

    WIth the floating orbs you might wanna make the ball 3x bigger then invisible then just a normal blank orb inside it. That way it looks normal and its more forgiving.

  • @SLIM3_215
    @SLIM3_215 5 месяцев назад

    you could add some scripts in the orb that check if the player is close enough and then check if they hit the spacebar instead of relying on touch. something like that. idk though.

  • @WatIsDisMyGuy
    @WatIsDisMyGuy 5 месяцев назад

    Question, what are name songs you used in the game?

  • @GoldenCobruh
    @GoldenCobruh 5 месяцев назад +132

    Shape Slide

    • @AverageHumanGD
      @AverageHumanGD 5 месяцев назад +1

      NEW LEVEL SLIDE!1!1!1!1!1!11!

    • @heckinconcernedkitten61
      @heckinconcernedkitten61 5 месяцев назад +6

      cant wait for the new shape slide spin-off, math sprint :)

    • @Cesar9259-c9p
      @Cesar9259-c9p 5 месяцев назад +3

      ⁠@@heckinconcernedkitten61history walk

    • @MintAnimatesRebooted
      @MintAnimatesRebooted 5 месяцев назад +2

      @@heckinconcernedkitten61part four: number walk

    • @D00DM00D
      @D00DM00D 5 месяцев назад +2

      Thing Movement

  • @Fireboy49_YT
    @Fireboy49_YT 5 месяцев назад

    maybe you gonna add more level or a custom level that many people can make their own level
    EDIT: maybe add the new gamemode like ball, robot, wave and swing

  • @Vchicage
    @Vchicage 5 месяцев назад

    Can you add hitboxes? That would be a nice improvement for the game

  • @Segull_Man
    @Segull_Man Месяц назад

    "who made that?" obviously says on the song; "Parry Gripp - chicken nugget dreamland"

  • @thebacongodfather777
    @thebacongodfather777 5 месяцев назад +1

    5:53 the creator of this song is Parry Gripp, creator of raining tacos too. they have so many more songs besides that one like the sequel to raining tacos, hailing taquitos, and the 6 or so other versions

  • @SiimplyDejella_Lovesjesus
    @SiimplyDejella_Lovesjesus 5 месяцев назад

    I love it! I wish I could could like you!

  • @Skittle_Brittle
    @Skittle_Brittle 5 месяцев назад

    I waited days for this to come out

  • @ItzWilld
    @ItzWilld 5 месяцев назад +3

    Honestly, I subbed to you, you are now one of my favorite youtubers.

  • @bogacub6079
    @bogacub6079 5 месяцев назад +4

    playing this felt like chewing 5 gum
    probably one of the better gd games on roblox tho, nice :D

    • @firicel0072
      @firicel0072 5 месяцев назад

      Poly dash is also a very good remake​@OSCFaked

  • @fraksans13
    @fraksans13 5 месяцев назад +2

    Please add a menu for exiting instead of it just exiting by itself when you die, can you also add attempts? Also please remove whatever it is that kicks you when you die so you dont have to replay the level EVERY TIME you die

    • @TheChill_OOF
      @TheChill_OOF 5 месяцев назад

      Thats A Real Feature But I Agree

  • @indekscard
    @indekscard 5 месяцев назад +8

    10:16 thank god someone else uses chatgpt for names and stuff
    i am not good at making names

  • @stickmangames8478
    @stickmangames8478 5 месяцев назад

    You can use raycast for the jump orbs maybe?

  • @nanobloxmsm
    @nanobloxmsm 5 месяцев назад

    JimboRibz your not the only one who spammed portals in the editor🤣

  • @Captainendou
    @Captainendou 4 месяца назад +1

    Can you make the cube a little smaller

  • @themikkomethod
    @themikkomethod 5 месяцев назад +1

    5:54 the same creator of its raining tacos (parry grip)

  • @SyncronedStuff
    @SyncronedStuff 5 месяцев назад +1

    Make the cube jump for 0.48 second, and make the jump rotation 180° without easing, also 0.48 seconds :)

  • @F.DJNFRANCOIS
    @F.DJNFRANCOIS 4 месяца назад

    You are so good at making geometry dash in Roblox

  • @muhammadmaz8656
    @muhammadmaz8656 4 месяца назад +1

    Yooo thats kinda cool

  • @uglychiphead
    @uglychiphead 5 месяцев назад +1

    can you make a game about verbalase 50k incident

  • @user-xe4cs4jb1j
    @user-xe4cs4jb1j 2 месяца назад

    How do you make players into a cube?

  • @Jackaylo
    @Jackaylo 5 месяцев назад

    great place to practice geometry dash

  • @YeetoTheYeetafic
    @YeetoTheYeetafic 5 месяцев назад

    bro even got the music to match each section of the level

  • @Maxprodarwin
    @Maxprodarwin 5 месяцев назад

    Can u make a lvl using the chicken nugget song?😂

  • @SmolGhost13
    @SmolGhost13 5 месяцев назад +1

    now someone needs to make roblox in geometry dash

  • @CliveMSM
    @CliveMSM 5 месяцев назад

    Good keep it up but I DARE YOU MAKE A CHALLENGE GAME ABOUT ESCAPING THE MANSION I TRY TO MAKE THAT GAME BYT I FAILED AO I QUIT AND I DARE YOU TO AMKE IT FOR MW TO TEST IT PLSSSSS!!!!!

  • @randomchannel-kh7oc
    @randomchannel-kh7oc 4 месяца назад

    you forgot to create the effect after a player dies where they look like they are respawning but the player can still die

  • @Partitioncuz
    @Partitioncuz 5 месяцев назад

    Theres a bug where i started and i just fell out of tne map plz fix taht later alsa happy new year

  • @ChaotixMario
    @ChaotixMario 5 месяцев назад

    Nice video I hope you have a wonderful day

  • @elizabethmoga790
    @elizabethmoga790 5 месяцев назад

    5:54 , parry gripp made that, AKA The person who made its raining tacos

  • @Crachboss32
    @Crachboss32 5 месяцев назад

    dude you can do the ship better all you need is y speed and you have to increase it by 1(or other number) every frame player is holding a mouse and decrease by same number every frame if the player is not holding mouse, you can get the number by random selection and if it's NOT PERFECT increase/decrease it to get the PERFECT number
    to fix cube rotation first you have to somehow get the number of degrees that the cube need to turn every frame it's not touching floor for turning exactly 180 degrees in jump from it's height to the same height, you can get it by random selection and if it's NOT CORRECT increase/decrease it to get the PERFECT number

  • @electromuffin
    @electromuffin 5 месяцев назад +1

    1:55 you litterally just described the recent tab

  • @mr.idoanimation
    @mr.idoanimation 5 месяцев назад +17

    he really said *”im not a pro coder”.* yet he’s over here making better game then *big games*

    • @youkedym
      @youkedym 5 месяцев назад +3

      What’s a big game? Like minecraft or tetris? Those are popular

    • @Ranomoly
      @Ranomoly 5 месяцев назад

      ​@@youkedym maybe big games like bloxfruit and pet simulator?

    • @youkedym
      @youkedym 5 месяцев назад +7

      what’s a blox fruit and why is someone simulating pets? Just buy one in real life.

    • @tornadoreaper
      @tornadoreaper 5 месяцев назад

      ​@@youkedymif you're trolling get out of RUclips

    • @youkedym
      @youkedym 5 месяцев назад +4

      what’s a “RUclips”? how do I tube?

  • @r1ptify
    @r1ptify 5 месяцев назад

    imagine ur about to beat a top 1 in this gd remake and then u disconnect

  • @Green_imposter_v4_play
    @Green_imposter_v4_play 5 месяцев назад

    Can you build fire in the hole in geometry dash?

  • @pinaple2945
    @pinaple2945 5 месяцев назад +1

    Yesss new jimbo game let’s goooooo!!!!!!!

    • @pinaple2945
      @pinaple2945 5 месяцев назад

      Gonna beat it tommorow. Tried it it’s kinda 🔥

  • @JurianErnnd
    @JurianErnnd 5 месяцев назад +1

    6:27 what is this? Flappy bird? 😂🦅

  • @BlueGD703
    @BlueGD703 5 месяцев назад

    the game is cool but my issues are
    1. the hitboxes are too big
    2. if you jump at the edge of a slab you jump regardless of if you touch space or not
    3. the ship controls are wack

  • @TalonMallon
    @TalonMallon 5 месяцев назад

    Accidentally read that as making Roblox in Geometry Dash

  • @B3AR_.-.76
    @B3AR_.-.76 5 месяцев назад

    can i help you build your games

  • @Creeper498
    @Creeper498 5 месяцев назад

    I am thinking about making these in geometry dash, with credits.

  • @BurritoBlox
    @BurritoBlox 5 месяцев назад

    Congrats on 8k

  • @teresitasomoza19
    @teresitasomoza19 5 месяцев назад

    1:56 done worry your not alone :P

  • @Roblox_bacon80
    @Roblox_bacon80 5 месяцев назад

    Hey I'm trying to make something like geometry dash I used the script from line runner but I can't move now

  • @vampireflowerr
    @vampireflowerr 4 месяца назад

    5:48 hes the guy who made the raining tacos song

  • @Kyezy49
    @Kyezy49 5 месяцев назад

    opposite video idea creating roblox in geometry dash

  • @SheekyDev
    @SheekyDev Месяц назад

    This is kind of cool

  • @dannoseworthy1788
    @dannoseworthy1788 5 месяцев назад

    Nice bro 🎉🎉🎉

  • @RayNobbed
    @RayNobbed 5 месяцев назад

    this is...
    AMAZING.. :D

  • @4nevar
    @4nevar 5 месяцев назад

    Ok well now someone has to make roblox in geometry dash

  • @windybee666
    @windybee666 5 месяцев назад

    every one in recent tab did portal spam atleast once

  • @Jerematic999
    @Jerematic999 5 месяцев назад

    *Jimbo* who made that?
    *Parrygrip* this guy doesn't know me

  • @fortniteog_yt8039
    @fortniteog_yt8039 5 месяцев назад +1

    5:54, the one who created the raining tacos song...

  • @user-nz2rw1qe6o
    @user-nz2rw1qe6o 23 дня назад

    Where do I put the script to change the color?

  • @arthurdab322
    @arthurdab322 5 месяцев назад

    Do detroit become human next

  • @Crusted004
    @Crusted004 14 дней назад

    Can u show us how to make it

  • @FilipCiejak-gq8ik
    @FilipCiejak-gq8ik 5 месяцев назад +1

    hi can i get your permision to recreate these levels in gd :) ?

    • @FilipCiejak-gq8ik
      @FilipCiejak-gq8ik 5 месяцев назад

      also i would need the songs if thets possible :)

  • @alainnyamushanja9316
    @alainnyamushanja9316 5 месяцев назад

    He put in the song for the second level on every simulator on Roblox

  • @user-yg4cp1si8k
    @user-yg4cp1si8k 4 месяца назад

    1:55 don`t worry i was doing it to when i had 300 hours in it when i was 9 (now i have over 2k hours lol)

  • @NoobAnimatorT
    @NoobAnimatorT 4 месяца назад

    This Game is Good But you Mind Getting a Helper?
    Exp Of Animating | 3 Years |
    Exp Of Being An Modeler | 5 Months |

  • @HowToMakes.
    @HowToMakes. 5 месяцев назад

    1:14 **roblox yay sound effect**

  • @Arc_productionss
    @Arc_productionss 5 месяцев назад

    0:59 erm actually, thats a ground spike

  • @HowToMakes.
    @HowToMakes. 5 месяцев назад

    3:07 **cries in FIRE IN THE HOLE 🔥**

  • @grajzyt.
    @grajzyt. 5 месяцев назад

    Geometry dash in starter gui 🔥🗣️

  • @Memory831
    @Memory831 5 месяцев назад

    Pls make a console version for ps5 and Xbox

  • @VermillionUser
    @VermillionUser 3 месяца назад

    no can be this coder
    is the best coder
    yeyeye!

  • @friedorange5999
    @friedorange5999 5 месяцев назад

    2:02, trust me, you are not the only one..

  • @LazySkeleton74
    @LazySkeleton74 5 месяцев назад +1

    1:56 Recent tab be like:

  • @ImVeryChaotic.
    @ImVeryChaotic. 5 месяцев назад

    make the spike hitboxes smaller like in the game

  • @batusinzildjian
    @batusinzildjian 5 месяцев назад +1

    can we download the gane pls 😢

  • @donnabellcraig538
    @donnabellcraig538 5 месяцев назад

    I will try it❤

  • @TBKD8
    @TBKD8 5 месяцев назад

    pls make that u can jump with mouse left click

  • @ThatDerpJerk
    @ThatDerpJerk 5 месяцев назад

    Now make hollow knight in roblox... THE ENTIRE GAME