CUSTOM CHARACTERS - How to create, rig and animate

Free Model (with Script)
www.roblox.com/library/649254...
RigEdit Plugin (Free Version)
www.roblox.com/library/127434...
RigEdit Plugin (Paid Version)
www.roblox.com/library/448640...
DISCORD ► / discord
TWITTER ►@gnomecodeRBLX
MUSIC
Neon Laser Horizon by Kevin MacLeod
Link: filmmusic.io/song/7015-neon-l...
License: filmmusic.io/standard-license

Пікірлер: 2 900

  • @captain.s1918
    @captain.s19183 жыл бұрын

    Tip: When making Looped animations, make the FIRST frame of the animation copy it, then paste it at the end of the animation.

  • @igga_hd

    @igga_hd

    3 жыл бұрын

    I agree, I do that too

  • @cezito6831

    @cezito6831

    3 жыл бұрын

    good tip

  • @memagan2868

    @memagan2868

    3 жыл бұрын

    I do it too and yea its a good tip

  • @bloxxeroni5608

    @bloxxeroni5608

    3 жыл бұрын

    Nice tip that actually does work

  • @japhinebarsalote4081

    @japhinebarsalote4081

    3 жыл бұрын

    So the codes not in the desc, very nice

  • @TypicalTip
    @TypicalTip3 жыл бұрын

    youre so underrated, im a small developer still learning advanced scripting and youre helping me so much

  • @JDISonic

    @JDISonic

    3 жыл бұрын

    SAme here

  • @gamerlucian8009

    @gamerlucian8009

    3 жыл бұрын

    same

  • @razery1225

    @razery1225

    3 жыл бұрын

    SAME

  • @cobinasaur

    @cobinasaur

    3 жыл бұрын

    @Maddux Grayson The bots are cooperating now. Interesting.

  • @Alchemist_Beaker

    @Alchemist_Beaker

    3 жыл бұрын

    Agreed.

  • @DaReff
    @DaReff2 жыл бұрын

    Over a year later and this tutorial still holds up! I was struggling with rigging for a solid 2 hours before going to the ole' YT. This video was great. From both a teaching and content creator standpoint. I'll be sure to credit ya!

  • @zomzilla420

    @zomzilla420

    9 ай бұрын

    and this is one year later its stll good

  • @Yoyo_12354
    @Yoyo_123543 ай бұрын

    for people who are too lazy to script, here's the script : local character = script.Parent local humanoid = character:WaitForChild("Humanoid") local walkAnim = script:WaitForChild("walk") local walkAnimTrack = humanoid.Animator:LoadAnimation(walkAnim) humanoid.Running:Connect (function(speed) if speed > 0 then if not walkAnimTrack.IsPlaying then walkAnimTrack:Play() end else if walkAnimTrack.IsPlaying then walkAnimTrack.Stop() end end end)

  • @fartcheeks2025

    @fartcheeks2025

    Ай бұрын

    :Stop()

  • @theminigameschannel1373

    @theminigameschannel1373

    21 күн бұрын

    Nice

  • @harrieraviation-2627

    @harrieraviation-2627

    10 күн бұрын

    Thank you

  • @AloegatorGG

    @AloegatorGG

    3 күн бұрын

    thanks bro😃

  • @curtissoldano7807
    @curtissoldano78072 жыл бұрын

    Dude, that was awesome! I've watched plenty of Roblox rigging and animation tutorials that just focused on one aspect of the workflow. This walk through builds the character model from scratch and takes it all the way into application by replacing the player character with the custom animated character. This answered soo many questions I had all in one video. Hands down one of the most useful and informative Roblox tutorials available.

  • @GnomeCode

    @GnomeCode

    2 жыл бұрын

    Awesome, glad you found it useful!

  • @DromeoGaming

    @DromeoGaming

    2 жыл бұрын

    @@GnomeCode I did everything correctly up to the part when you morph into the spider for some reason I dont morph instead my roblox character loads please tell me how to fix it

  • @cheshire_6210

    @cheshire_6210

    2 жыл бұрын

    @@DromeoGaming im not him, but i think u group all the parts of the character, then put it in startercharacter i guess

  • @crossiscool6681

    @crossiscool6681

    2 жыл бұрын

    @@cheshire_6210 That’s what u do

  • @cilok2326

    @cilok2326

    2 жыл бұрын

    @@GnomeCode when i try to do the asset configutarion thing i got an error how do i fix it?

  • @wee6096
    @wee60962 жыл бұрын

    This is actually very helpful, you need more recognition for your breathtaking work

  • @leowastakenwastaken
    @leowastakenwastaken2 жыл бұрын

    Tip: If you don't wanna use the custom character as a StarterCharacter and you want them to wander around the workspace or something, bring him into the workspace, and drag the animate script into him. Then insert a regular script into your character, name it Animate, and open the local script. Then press Ctrl + A to select everything, then Ctrl + C to copy. Then paste in to the regular script, and if you put the Animation inside the script, drag the animation into the regular script and delete the local script. If you want to test it, just push the character around. If done correctly, he should play the animation while moving. Then search KZread for the movement script you want, and you're done!

  • @Shadow_God563

    @Shadow_God563

    Жыл бұрын

    thanks

  • @vinutisfalse2527

    @vinutisfalse2527

    Жыл бұрын

    danke

  • @pepperoniblox

    @pepperoniblox

    Жыл бұрын

    TYS FRICKIN' M

  • @MichaelStavropulos

    @MichaelStavropulos

    Жыл бұрын

    I tried it, no luck :( should I place the regular script into my StarterPLayer > StarterPlayerScript ?

  • @Gen1us707

    @Gen1us707

    11 ай бұрын

    @@MichaelStavropulos no, since then it will learn for the player.

  • @cce5161
    @cce51612 жыл бұрын

    i love this channel because, unlike other channels, he gives the link to the model if you cant do it, and he also tells what youve done wrong if it doesnt work. thanks so much!

  • @tim.m2

    @tim.m2

    Жыл бұрын

    near same pfp

  • @zero0bb
    @zero0bb2 жыл бұрын

    I was getting so frustrated on how to animate my character, ilysm this video helped me a TON, Don't stop these

  • @gdysplayz8432
    @gdysplayz84323 жыл бұрын

    Thank you Gnome Code you really helped me out in this video, two days ago I tried to make a custom character of my own but even though I used motor6D to join the parts they would move from there current position whenever I set Part1 and Part0, now because of this video I can finally create characters for my games.

  • @ducko480

    @ducko480

    4 ай бұрын

    same

  • @huggylama249
    @huggylama249 Жыл бұрын

    I had to redo this 3 times but it was definitely worth the time, thank you!

  • @hdr2128

    @hdr2128

    Жыл бұрын

    idk what the last emoji is XD

  • @PlaygroundExecutions-bh5fm

    @PlaygroundExecutions-bh5fm

    21 күн бұрын

    @@hdr2128 there was no last emoji what is this kid on about💀

  • @xyizsilver

    @xyizsilver

    11 күн бұрын

    @@PlaygroundExecutions-bh5fm why is bro replying 1 year later

  • @Beliqvx
    @Beliqvx2 жыл бұрын

    Thanks so much! This was really helpful for my models. I've been looking all over for some and I found this one! You're so underrated!

  • @xharerae
    @xharerae2 жыл бұрын

    Man, this is the best video that explains how to rig characters. I am creating a rake game, and wanted to make custom rake model, but i didn't knew how to rig. Now, after a year, I found your vid and now can finally make my game. Thanks)

  • @grubius4120

    @grubius4120

    2 жыл бұрын

    Damn. Ik im late enough for a baby to be born, but i am too, kinda sus.

  • @tinyguyanimates

    @tinyguyanimates

    Жыл бұрын

    what's your user i wanna play

  • @greattexanbluedragon2773
    @greattexanbluedragon27733 жыл бұрын

    TYSM for making this!!! I’ve been trying to find a tutorial on how to do this but I had no clue what to search ;-; thank god I was recommended this!

  • @Legotron
    @Legotron Жыл бұрын

    Brilliantly simply explained and easy to follow. Fully understood this first go around, thank you!

  • @ypuos
    @ypuos2 жыл бұрын

    For anyone else who may be momentarily stuck at 5:30 like I was, the 'Primary Part' options was located under the Pivot dropdown menu for me (scroll down, below Data)

  • @catiix12

    @catiix12

    2 жыл бұрын

    ty :)

  • @nei6387

    @nei6387

    Жыл бұрын

    TY :)

  • @Luc0678

    @Luc0678

    Жыл бұрын

    Ty :D

  • @alianims6566

    @alianims6566

    Жыл бұрын

    Thank You

  • @ULLA-fc1yc

    @ULLA-fc1yc

    Жыл бұрын

    I still can't find it, this may be because I am new to studio but I cannot find the Pivot dropdown menu, I can't see it nor the data thing.

  • @twiglegg508
    @twiglegg5083 жыл бұрын

    Uploaded on the exact day that I was gonna look into this subject.

  • @shakea8025
    @shakea80252 жыл бұрын

    If you're having problems with the character not moving, check if everything is unanchored. Remember to unanchor the humanoidrootpart too. I had an issue where my character would not move at all however when I unanchored the humanoidrootpart it was working well.

  • @Noobixm-GGD

    @Noobixm-GGD

    Жыл бұрын

    Yes. Any anchored part will freeze a humanoid completely, I used this to troll a lot back in the day 😂

  • @xalqh4

    @xalqh4

    Жыл бұрын

    my head fell off when i finished i unanchored all the parts?

  • @ohpissoff

    @ohpissoff

    Жыл бұрын

    @@xalqh4 attach the head to the torso in rigedit

  • @Sylca

    @Sylca

    Жыл бұрын

    Thanks, It worked but: now i float above the ground

  • @ohpissoff

    @ohpissoff

    Жыл бұрын

    @@Sylca its the hip height i think. this happened to me and i 1) moved the actual character up so its like floating above the baseplate and 2) gradually decreased the hip height by very small numbers

  • @ryanaerts1554
    @ryanaerts1554 Жыл бұрын

    omg this video is a life saver, spent 3 hours tryna work out why it wasn't working

  • @miguelbatista8183
    @miguelbatista81837 ай бұрын

    thank you so much, i usually dont comment on videos much, but this video helped me more than all the others combined, my honest thanks to you.

  • @zappasnap588
    @zappasnap5883 жыл бұрын

    Great video, been waiting a while for a tutorial on this.

  • @GnomeCode

    @GnomeCode

    3 жыл бұрын

    Cheers! This has definitely been a highly requested topic for me

  • @tab3522

    @tab3522

    3 жыл бұрын

    @@GnomeCode I did everything right, I even triple checked if I missed anything and for some reason I can't play as my model with animation. I can still play as it but the animation is not there. Can you help me, please?

  • @Sillykids
    @Sillykids3 жыл бұрын

    Thank you so much! This has been very helpful. Also, I was wondering if it was possible to apply the animations directly to the models, so that they have custom animations when a player chooses to morph into them. Thanks in advance!

  • @uptmr9768

    @uptmr9768

    2 жыл бұрын

    Yeah I need this to

  • @crypto1upteam750

    @crypto1upteam750

    Жыл бұрын

    For any reading you can clone the script and animation from replicated storage after you destroyed the old animate script from the player.

  • @SkylarRainbowGaming
    @SkylarRainbowGaming4 ай бұрын

    Yooo this is actually really good, I usually have trouble understanding things but like this was explained so well, I'm def going to come back to this vid :)

  • @kellyduckling5729
    @kellyduckling5729 Жыл бұрын

    I remember when i used to watch you 2019 or 2020 (i cant remember, sorry) and because of you i managed to learn code without needing a tutorial on my first day of roblox studio, thank you so much for helping out!

  • @Grand_editor
    @Grand_editor3 жыл бұрын

    Your so underrated I was about to quit doing games but I found this and got back to work thank you so much

  • @Dumify

    @Dumify

    2 жыл бұрын

    Well 30k is a lot of subscribers and yes he deserves more subs and likes

  • @tiktike1
    @tiktike13 жыл бұрын

    This helped sooo much, I like how your going through every step and not rushing through it. It helps a lot ty. Question: how did u make the legs of the spider animation so smooth?

  • @madhatkitsune

    @madhatkitsune

    2 жыл бұрын

    I'm not entirely sure, but it seemed like something Roblox does on its own between key frames for you!

  • @misterformal2763

    @misterformal2763

    Жыл бұрын

    @@madhatkitsune you can right-click on the editor and select the interpolation type, I'm pretty sure

  • @Lkrupa

    @Lkrupa

    7 ай бұрын

    I wouldn't really call it smooth..

  • @mybrotherbigfoot
    @mybrotherbigfoot Жыл бұрын

    Wow! Thanks so much, I was working on my horror game, Starry Night, and I wanted to make the starter player a wolf, but didn’t know how, and now I know!

  • @sairentokir5060

    @sairentokir5060

    Жыл бұрын

    Yay! :D

  • @nou4898
    @nou48982 жыл бұрын

    Tip: u can join multiple parts at once using rig edit (motors will be parented to the first part selected)

  • @suuul
    @suuul3 жыл бұрын

    i was just searching for this, tysm

  • @nowayjose1870
    @nowayjose1870 Жыл бұрын

    thanks for making this so clear ! ! very excited to get home today so i can try this!!!

  • @Chris-he3lb
    @Chris-he3lb2 жыл бұрын

    Thanks Gnome, the boys back at the lawn are going to appreciate this one.

  • @queezydragon
    @queezydragon3 жыл бұрын

    Suggestion: can you do sound regions? like when you go into a building a certain song plays? also i love the scripting videos!

  • @jsnotlout3312

    @jsnotlout3312

    3 жыл бұрын

    I believe alvin blox has made a video on this

  • @ZeroSensed

    @ZeroSensed

    3 жыл бұрын

    Jsnotlout could you link that please?

  • @skelebob987

    @skelebob987

    3 жыл бұрын

    @@ZeroSensed kzread.info/dash/bejne/fpN-ycNrfcq4lLg.html

  • @jsnotlout3312

    @jsnotlout3312

    3 жыл бұрын

    @@ZeroSensed kzread.info/dash/bejne/fpN-ycNrfcq4lLg.html

  • @ZeroSensed

    @ZeroSensed

    3 жыл бұрын

    Tuna K4T tysm

  • @dornog70
    @dornog702 жыл бұрын

    on the rig edit, you should set the step to 0.01 for a little more precise movements. thanks for the video, its was very helpfull.

  • @SpookSterTTV
    @SpookSterTTV5 ай бұрын

    For those facing issues with their animation not playing while walking, it's likely that you skipped the part about changing the 'HipHeight' around 10:17. I personally overlooked this step initially because I wasn't experiencing problems at that moment. However, later on, when I revisited the settings and adjusted the 'HipHeight,' it resolved the issue of my animation not playing when moving my character

  • @reep228

    @reep228

    4 ай бұрын

    At 13:58 he says to export but I don’t see it only import

  • @lll.u

    @lll.u

    4 ай бұрын

    @@reep228 publish to roblox button

  • @skyboxproject
    @skyboxproject Жыл бұрын

    This absolutely works well! Thanks for the tutorial.

  • @dziadzio6063
    @dziadzio60633 жыл бұрын

    It's amazing! How much do I have to learn to reach your level?

  • @lthumbie251
    @lthumbie2512 жыл бұрын

    Hey dude! I know this video was made last year, but this really helped me since I want to start getting back into developing games. I do have one question though, I rigged everything right to the point where I could animate my figure except for the fore arms and hands. Any advice? (Btw no idea if you or anybody will respond but it's worth a shot)

  • @eggy9973

    @eggy9973

    2 жыл бұрын

    I had the same problem, I think it'll work if you rig everything as a joint instead of having wields like this video says? (I hope this helped ;v;")

  • @tornkey8771

    @tornkey8771

    2 жыл бұрын

    welds?

  • @bigbeemerbiker

    @bigbeemerbiker

    Жыл бұрын

    Just join the lower arm to the upper arm (select upper arm, cmd-select lower arm, click joint), then join the upper arm to the torso (select torso, cmd-select upper am, click joint)

  • @rafaelbrustolin4687
    @rafaelbrustolin4687 Жыл бұрын

    This was really helpful!! Im trying to create some custom zombies to a game im developing

  • @neothelurker
    @neothelurker2 жыл бұрын

    i love it when people make roblox studio tutorials espacielly gnomecode

  • @9riin600
    @9riin6003 жыл бұрын

    I'm trying to make a Sonic game, this really helped because I had no Idea how to do any of this lol wait how do I do this for other animations also timestamps 0:00 Intro 0:42 Creating the Character Model 6:07 Rigging and Welding 11:18 Animating 14:38 Scripting 16:40 Testing 17:14 Fixing & More 19:04 Common Problems & Outro

  • @loudhedgehog1116

    @loudhedgehog1116

    3 жыл бұрын

    I think the replace the word walk with jump or climb or something like that.

  • @feni-roblox3914

    @feni-roblox3914

    2 жыл бұрын

    @@loudhedgehog1116 this is very inconsistent

  • @loudhedgehog1116

    @loudhedgehog1116

    2 жыл бұрын

    @@feni-roblox3914 I wasn't the best at scripting at that time and I didn't knew.

  • @tim.m2

    @tim.m2

    Жыл бұрын

    hey im making one too

  • @sairentokir5060

    @sairentokir5060

    Жыл бұрын

    @@loudhedgehog1116 How would I do it..?

  • @lilychicipher
    @lilychicipher3 жыл бұрын

    Hi! Thanks for much for this! Can you maybe make a video on how to make these morphs that use buttons instead of starter characters?

  • @Todd.Momma.06
    @Todd.Momma.06 Жыл бұрын

    I AM NOT EVEN DONE WITH THE VIDEO BUT YOU HAVE HELPED SO MUCH. I HAVE SYRUGGLED SO HARD TO EVEN GET THE HUMANOID STUFF TO WORK

  • @ouo1890
    @ouo1890 Жыл бұрын

    I finally found the useful thing I wanted to find most. Thank you very much.

  • @rod3266
    @rod32663 жыл бұрын

    This is a really insightful and basic tutorial, is there anyway you could make a tutorial on how to switch from one custom character to another using a gui or a morph pad of some sort? That would be really helpful.

  • @Full_Sanity

    @Full_Sanity

    Жыл бұрын

    yes i agree

  • @dudechase5661

    @dudechase5661

    5 ай бұрын

    same@@Full_Sanity

  • @meteor0id
    @meteor0id3 жыл бұрын

    Great video, I was looking for something like this. Do you know what to do for a skinned mesh custom character?

  • @Zucore_Creates
    @Zucore_Creates Жыл бұрын

    Thank goodness i found this, spent hours trying to figure it out and its right there! One problem tho, my animation wont stop playing even when i stop walking

  • @watsonhuynh4884

    @watsonhuynh4884

    Жыл бұрын

    Same here

  • @SharkyGull
    @SharkyGull2 ай бұрын

    I did have an issue but I recently fixed it due to a small error. Thanks for this- Very helpful for my game!😉

  • @Me-eo1qq
    @Me-eo1qq3 жыл бұрын

    Could you make a gun and/or raycasting tutorial? I've been wanting to make a fighting game for a long time, but there are no good gun tutorials.

  • @ALPatingitTUGaming
    @ALPatingitTUGaming3 жыл бұрын

    I will really wish to make custom Ai's to make a game and even custom keys for it. And also about things the hardest ones were making all vehicle utilities includes Farm vehicle utilities, truck utilities, car utilities, and more.

  • @jefersoncaminhoes111
    @jefersoncaminhoes111 Жыл бұрын

    This is exactly what I needed, thank you so much!!!

  • @OscarsPlaysworld
    @OscarsPlaysworld5 ай бұрын

    THANK U SO MUCH I was so confused on how u made the teddy work but now I made my rig TY!

  • @FavouredPrince
    @FavouredPrince3 жыл бұрын

    Yes you made a tutorial on this I needed this for my piggy game :)

  • @BrianVanKirk

    @BrianVanKirk

    3 жыл бұрын

    I needed it for piggy too1 I was making an animation when one of the models didn't have 'rig' as an option in the add item menu!

  • @ministryoftruth7229

    @ministryoftruth7229

    2 жыл бұрын

    what is up with kids and piggy, piggy sucks legit i would rather watch fnaf sfm than that and fnaf sfm now is cringy

  • @adaptable1553
    @adaptable15532 жыл бұрын

    Major question: Spent ages making a very complicated and intricate model to do this with. When you group them together at the start... Does grouping pre-existing groups together effect the functionality of this at all? I've been stuck on the nametag not appearing step for a while now, so I'm going to assume, yes it does. More than one part for a head means it won't work? Is this true?

  • @cloud_step.307

    @cloud_step.307

    2 жыл бұрын

    union?

  • @FELLAVR

    @FELLAVR

    Жыл бұрын

    yes it won't work

  • @amdonian598
    @amdonian598 Жыл бұрын

    finally actually someone that knows what they are doing

  • @lubiezolwie
    @lubiezolwie Жыл бұрын

    thanks so much for this, i dont know anything about coding and yet this was very simple to understand!

  • @NeedToDev
    @NeedToDev3 жыл бұрын

    sick! You are amazing!! Yet I have one question; how would I fully animate it? (For example add Idle animation, jumping animation, falling animation, swimming animation etc..)

  • @BendBlox

    @BendBlox

    3 жыл бұрын

    thats what I was about to ask EDIT: Found a way nevermind

  • @someguy8293

    @someguy8293

    3 жыл бұрын

    the same way you’d add a running animation

  • @NeedToDev

    @NeedToDev

    3 жыл бұрын

    @@someguy8293 examples?

  • @adliala8987

    @adliala8987

    3 жыл бұрын

    @@BendBlox What was your way?

  • @TopHatDoomsDay1337

    @TopHatDoomsDay1337

    2 жыл бұрын

    ​@@VILPHORIA use this for more animations (R6) www.roblox.com/library/1180375019/

  • @magic_cow
    @magic_cow3 жыл бұрын

    question: is there a way to run a command that gives yourself the animation and not to others? edit: what should i do if i want to set the animation to a idle animation

  • @chaowang4950
    @chaowang4950 Жыл бұрын

    Now I finally know how to custom a non-human-like character, and use it as the StarterCharacter!

  • @KamdensHouse
    @KamdensHouse9 ай бұрын

    OMG THANK YOU YOU YOU I CAN FINALLY STOP ASKING PEOPLE TO MAKE RIGS FOR ME YESSS

  • @misterclubs
    @misterclubs3 жыл бұрын

    Will you make another tutorial on animation like this one? Basically where you can make the idle animation, jump animation, etc. I'm just really curious.

  • @hrithikranganathan7071

    @hrithikranganathan7071

    3 жыл бұрын

    Yes! I want this too! lol

  • @vertxart6889

    @vertxart6889

    3 жыл бұрын

    did you ever figured it out??

  • @bolognaworm

    @bolognaworm

    3 жыл бұрын

    for idle local character = script.Parent local humanoid = character:WaitForChild("Humanoid") local walkAnim = script:WaitForChild("Walk") local walkAnimTrack = humanoid.Animator:LoadAnimation(walkAnim) local idleAnim = script:WaitForChild("Idle") local idleAnimTrack = humanoid.Animator:LoadAnimation(idleAnim) humanoid.Running:Connect (function(speed) if speed > 0 then if not walkAnimTrack.IsPlaying then walkAnimTrack:Play() idleAnimTrack:Stop() end else if walkAnimTrack.IsPlaying then walkAnimTrack:Stop() idleAnimTrack:Play() end end end)

  • @jawplw-jz4ot
    @jawplw-jz4ot Жыл бұрын

    Thank you so much GnomeCode! This video helped me sooooo much! Keep up your great videos! 🙂

  • @bass4254
    @bass42543 жыл бұрын

    finally, a tutorial that doesn't include moon animator.

  • @ThatStrangeUnknown
    @ThatStrangeUnknown9 ай бұрын

    This really helped me make my project. Thank you!

  • @pablobigpops
    @pablobigpops2 жыл бұрын

    Thank you so much, this teached me how to rig by watching it only 1 time!

  • @pramayudha3674
    @pramayudha36743 жыл бұрын

    This helped me out a lot! But can you make a tutorial on how to make the idle and jump animations for a custom character? edit: also how can I make my custom character hold weapons and tools?

  • @BrianVanKirk

    @BrianVanKirk

    3 жыл бұрын

    I may be of some assistance with making your characters hold weapons and tools. First, move your tool or weapon to the position you want it in, like in someone's hand, or on the ground, or wherever. If you look inside the model of the tool you want to animate, you'll most likely see a model called 'handle.' You don't have to use rig editor for this, only something that I think comes with the plugin moon animator called 'easy weld.' You then click on easy weld and you'll see three tabs at the top of the little box. Move to the tab called 'parts.' The base part is what you want the object you're welding to move with. the target part is the object that moves with the base part. let's say you want to make an R15 character hold a spoon in their right hand. pull up the easy weld, go to 'parts' tab, and then this is what you do in this scenario: look in the explorer until you find the model of the character. make sure you know where, in this case, the model of the spoon is too. click on the right arm in the explorer and then find where the handle part in the spoon is. then, while HOLDING down Ctrl, click on the handle model. then click join in place, and you're done! make sure not to move the character or the spoon by themselves, because that would undo the weld. I hope you found this helpful :D

  • @vertxart6889

    @vertxart6889

    3 жыл бұрын

    @@BrianVanKirk hey man do you know how to do other animations like idle and jumping??

  • @AltonTRU

    @AltonTRU

    2 жыл бұрын

    Toll grip editor plugin 25 robux I think unless you want to spend a week tweaking with the different axis

  • @crossiscool6681

    @crossiscool6681

    2 жыл бұрын

    @@BrianVanKirk what?!

  • @Full_Sanity

    @Full_Sanity

    Жыл бұрын

    maybe if you make the arm a model then group arm and weapon so you you move the arm and weapon at the same time, so you can move them all at once and if you just want to move the arm or gun you can just go into the model and click on it.

  • @THEVILLAIN___
    @THEVILLAIN___3 жыл бұрын

    me who doesnt know a hell about modeling and how to do things: Uh I present Bean Yea my new clever totally original character model

  • @magic_cow

    @magic_cow

    3 жыл бұрын

    B E A N

  • @THEVILLAIN___

    @THEVILLAIN___

    3 жыл бұрын

    @SynsLeaf TV a fellow man of culture I see..

  • @jawsko

    @jawsko

    3 жыл бұрын

    @SynsLeaf TV is it just me, or is that bean looking kinda......... T H I C C

  • @ethanjamesbarron

    @ethanjamesbarron

    3 жыл бұрын

    We don't talk about the bean drill around here...

  • @JustthesameJn

    @JustthesameJn

    3 жыл бұрын

    @@ethanjamesbarron drill? what is tha-

  • @danielpaderin1817
    @danielpaderin1817 Жыл бұрын

    Bro I thought this would be so hard, thanks to you!

  • @user-ni2iv8iv6w
    @user-ni2iv8iv6w6 ай бұрын

    Thanks!!! your video is the best one on this I have found, subbed

  • @flares7574
    @flares75743 жыл бұрын

    Aah yes I was confused about the the Humanoid Root Part, thanks for explaining it! Btw can you make a whole separate tutorial on the crawling? If no it’s fine

  • @GnomeCode

    @GnomeCode

    3 жыл бұрын

    I'm glad you found it useful, cheers

  • @bingolinging

    @bingolinging

    3 жыл бұрын

    @@GnomeCode why did you only respond to this?

  • @KawaiiKoyuvu
    @KawaiiKoyuvu Жыл бұрын

    Hii i have a question So im making a game based off of the game on steam called Stray and i need the character to be a cat but fairly detailed is there a good way to make the fur etc?

  • @yoceluila

    @yoceluila

    Жыл бұрын

    I don't think so, except scripting realistic hair and that will lag the game alot, i recommend finding a good fur texture

  • @Charessel
    @Charessel Жыл бұрын

    This video had been REALLY helpful!

  • @bronzebullet8640
    @bronzebullet86406 ай бұрын

    Thus was super helpful!! Im ging to watch more videos. New to coding so hopefully i can understand some things in time.

  • @Zimo_Or_doovy
    @Zimo_Or_doovy2 жыл бұрын

    hi gnomecode im try to make my own piggy game but i can't figure out why the animation says somthing about the 6Ds set head and i don't know what to do:'C

  • @Zimo_Or_doovy

    @Zimo_Or_doovy

    2 жыл бұрын

    pls help me

  • @hrhehe2829
    @hrhehe28293 жыл бұрын

    Can you tell us how you made the robot who hit teddy in chapter 3 (I really wanna know cause I wanna add a NPC in so the story works)

  • @GnomeCode

    @GnomeCode

    3 жыл бұрын

    I'm not sure I'll make a video on it, but you can open studio and have a look yourself as it's all open-sourced

  • @hrhehe2829

    @hrhehe2829

    3 жыл бұрын

    @@GnomeCode oh ok thx

  • @hrhehe2829

    @hrhehe2829

    3 жыл бұрын

    @@GnomeCode Sorry GnomeCode for annoying you but I can’t find how to do a NPC (am a noob in studio) am super sorry...

  • @idealistdeveloper2297
    @idealistdeveloper2297 Жыл бұрын

    Cool video, thanks a lot for the help. Honestly, this helped a lot.

  • @hike8932
    @hike8932 Жыл бұрын

    this is fucking amazing, thank you gnome. you always make the advanced stuff so much better to udnerstand

  • @blingstah7954
    @blingstah79543 жыл бұрын

    Could you make it so it’s basically in a GUI where you can switch between models and such?

  • @ayouzid
    @ayouzid3 жыл бұрын

    Suggestion: building tutorials, camera scripts tutorials, and other stuff like speed or lighting.

  • @GnomeCode

    @GnomeCode

    3 жыл бұрын

    I might do a building tutorial. What do you mean by 'speed' and 'lighting'?

  • @chexil

    @chexil

    3 жыл бұрын

    @@GnomeCode I think he means how fast you move and how you change lighting options like the outdoorambient option.

  • @ayouzid

    @ayouzid

    3 жыл бұрын

    @@chexil your right.

  • @billy1519

    @billy1519

    3 жыл бұрын

    There is already a sort of camera tutorial in the platformer series in the first episode you could just adapt it to your needs there is also on in the cutscenes episode in teddy which may be what you need

  • @neoe5970
    @neoe5970 Жыл бұрын

    Every time I try to play around with roblox studio I always come back to this video, although I still hadnt made the walk animation to work when walking

  • @bennett6966
    @bennett69662 жыл бұрын

    Thank u sm for this I looked at liek 20 videos and only this helped

  • @brawldude2656
    @brawldude26563 жыл бұрын

    Errors: *We are all different* Solution: Select humaniod root part first Errors: Am i joke to you?

  • @This_Unfathomable_Life
    @This_Unfathomable_Life2 жыл бұрын

    Literally, my model had almost 43 things to be welded to other things, CRAZY! So it took me 30 minutes to weld them to other things.

  • @messa8636

    @messa8636

    2 жыл бұрын

    use union to make one part

  • @Melon-pk6tp
    @Melon-pk6tp2 жыл бұрын

    Tysm! This tutorial really helped me out :D

  • @Rockin.
    @Rockin. Жыл бұрын

    Tip: idk why it took me so long to understand this but it you have a leg that has many parts and you group it make sure when it comes to the edit rig part to open the your leg part (or any part you grouped) and select the items in it

  • @theonlyshinyumbreon
    @theonlyshinyumbreon3 жыл бұрын

    By any chance can you please make a video about idle animations please? I'm not making anything myself, but I'm quite literally asking for a friend.

  • @bolognaworm

    @bolognaworm

    3 жыл бұрын

    local character = script.Parent local humanoid = character:WaitForChild("Humanoid") local walkAnim = script:WaitForChild("Walk") local walkAnimTrack = humanoid.Animator:LoadAnimation(walkAnim) local idleAnim = script:WaitForChild("Idle") local idleAnimTrack = humanoid.Animator:LoadAnimation(idleAnim) humanoid.Running:Connect (function(speed) if speed > 0 then if not walkAnimTrack.IsPlaying then walkAnimTrack:Play() idleAnimTrack:Stop() end else if walkAnimTrack.IsPlaying then walkAnimTrack:Stop() idleAnimTrack:Play() end end end) i just edited the script in the video lmk if it doesnt work im pretty new to scripting but i tried my best so i hope this helps

  • @theonlyshinyumbreon

    @theonlyshinyumbreon

    3 жыл бұрын

    @@bolognaworm my friend tried it and she said it worked, thanks man.

  • @bolognaworm

    @bolognaworm

    3 жыл бұрын

    @@theonlyshinyumbreon np!

  • @oddmusic1637

    @oddmusic1637

    2 жыл бұрын

    @@bolognaworm how do i make fall and jump animations?

  • @bolognaworm

    @bolognaworm

    2 жыл бұрын

    @@oddmusic1637 i dunno how to do that sorry

  • @kerebharrison459
    @kerebharrison4593 жыл бұрын

    OMG YES. I HAVE WANTED TO KNOW HOW TO DO THIS FOR SOOOOOOO LONG :OOOOOOOOOO

  • @Brickoooooo

    @Brickoooooo

    3 жыл бұрын

    L O N G

  • @animatedpiplup8329
    @animatedpiplup83292 жыл бұрын

    It took long but I was so happy once it was done

  • @RainbowNoob127Official
    @RainbowNoob127Official6 ай бұрын

    thanks for fixing the hipheight problem. it was worth it

  • @StarIingspirit
    @StarIingspirit2 жыл бұрын

    Question, When i spawn as my Character, They keep falling apart every single time, Im only an floating head? Why is it that way?

  • @werter490

    @werter490

    2 жыл бұрын

    Among us

  • @vengeance3238

    @vengeance3238

    2 жыл бұрын

    Did u connect the joints?

  • @werter490

    @werter490

    2 жыл бұрын

    Did you anchor it

  • @StarIingspirit

    @StarIingspirit

    2 жыл бұрын

    I did connect the joints ( Im not sure if i did it correctly since its been awhile since i did it ) And i didnt anchor it all since whenever i spawn i just get stuck

  • @werter490

    @werter490

    2 жыл бұрын

    @@StarIingspirit then idk

  • @Carusmarus
    @Carusmarus8 ай бұрын

    my character isn't rotating

  • @mediocreatbest1269
    @mediocreatbest1269 Жыл бұрын

    I love you so much Gnomecode THANK YOU

  • @yuknowmonk
    @yuknowmonk Жыл бұрын

    Thanks, I was having trouble rigging it on my own

  • @ddoomaplays7018
    @ddoomaplays70183 жыл бұрын

    First like

  • @bruhitsdoop

    @bruhitsdoop

    3 жыл бұрын

    nice

  • @plagued2821

    @plagued2821

    3 жыл бұрын

    nice

  • @hrhehe2829

    @hrhehe2829

    3 жыл бұрын

    Pizza

  • @kaijufan0014

    @kaijufan0014

    3 жыл бұрын

    Nice

  • @ddoomaplays7018

    @ddoomaplays7018

    3 жыл бұрын

    Wow

  • @pedror1439
    @pedror14393 жыл бұрын

    imagine being a gnome can’t relate xd

  • @DamonDoAnything
    @DamonDoAnything20 күн бұрын

    hello great video! helped me learn! Also if you are stuck on the rotate joints part, press R and the move joints will work!

  • @braianguerra
    @braianguerra Жыл бұрын

    thank you so much! i really needed this for my game.

  • @rengineer2073
    @rengineer20733 жыл бұрын

    It's not letting me save my animation! It says error code 422. Edit : All I had to do was just restart studio. Another Edit : This is so cool!

  • @lykytaca4987

    @lykytaca4987

    3 жыл бұрын

    I did restart studio and it didn't work

  • @coolcop4986

    @coolcop4986

    3 жыл бұрын

    You need to export it, not save it. Gnomecode exports the animation in this tutorial not save it

  • @creepypeep6837
    @creepypeep68372 жыл бұрын

    thank you so much i am so friggen happy this worked

  • @akiprox7
    @akiprox7 Жыл бұрын

    Tysm for the Primary Part now it's a simple box!

  • @guest5889
    @guest58897 ай бұрын

    You're a life saver, you've earned a sub