How to MAKE Custom Animations IN Roblox Studio (UPDATED)

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024

ความคิดเห็น • 877

  • @rustysillyband
    @rustysillyband  ปีที่แล้ว +106

    Thanks to Mizzou, you can make the r6 run animation work, by changing everything that says "Run" to "Walk".
    Script:
    local Players = game:GetService("Players")
    local runAnimation = "rbxassetid://000000" -- replace these with your own animation ids
    local idleAnimation = "rbxassetid://000000" -- replace these with your own animation ids
    local JumpAnimation = "rbxassetid://000000" -- replace these with your own animation ids
    local function onCharacterAdded(character)
    local humanoid = character:WaitForChild("Humanoid")

    local animateScript = character:WaitForChild("Animate")

    animateScript.run.RunAnim.AnimationId = runAnimation
    animateScript.idle.Animation1.AnimationId = idleAnimation
    animateScript.jump.JumpAnim.AnimationId = JumpAnimation
    end
    local function onPlayerAdded(player)
    player.CharacterAppearanceLoaded:Connect(onCharacterAdded)
    end
    Players.PlayerAdded:Connect(onPlayerAdded)

    • @Train2822
      @Train2822 ปีที่แล้ว +2

      Cool

    • @barrierwins
      @barrierwins ปีที่แล้ว +5

      can i add you in my friends and my game because idk something isn't working agian so maybe you can try?

    • @Train2822
      @Train2822 ปีที่แล้ว +1

      Me?

    • @theflightgalaxy
      @theflightgalaxy ปีที่แล้ว +1

      People put the script in the comments that is for lazy people that don’t want to type 1500 words for something to work…

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +4

      @@theflightgalaxy Technically yes, but also incase someone forgot an important thing in the script, they can go to the comments and find the correct script :) Thanks for watching!

  • @HavocMusic1759
    @HavocMusic1759 ปีที่แล้ว +36

    As someone who has tinkered with roblox games for the past 6 years, I have to say, for the small fanbase, you have quite good tutorials. Clear, concise, easy to follow. All I can say is slightly better editing, a new mic, and you'll have A Tier Roblox Tutorials.

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +3

      Thank you very much! Do you have any ideas for what I can improve on with my editing? I'm currently in the process of getting new materials for higher quality videos!

    • @HavocMusic1759
      @HavocMusic1759 ปีที่แล้ว +4

      @@rustysillyband Not an editor, just observant lol. I guess the biggest thing is just practice, try new things, and you will always get better. I do audio editing/mixing and mastering and about the only editing I've done is add a cheesy transition here and there and cut unnecessary footage out

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +2

      @@HavocMusic1759 Alright, thanks! I'll try some new things out!

    • @OrcaGuyreal
      @OrcaGuyreal ปีที่แล้ว +1

      I watched the old video on this, and saw the "New and improved link" and this ones editing IS GREATLY IMPROVED@@rustysillyband

  • @hungryart1st
    @hungryart1st ปีที่แล้ว +2

    most videos i watched never worked, now because of this video, im so happy! thanks rusty!!

  • @BobsTheBuild3r
    @BobsTheBuild3r ปีที่แล้ว +16

    Literally exactly what I've been looking for. Thank you very much, earned my sub for sure!!!

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      Awesome, thank you!

    • @gamingwithzay13
      @gamingwithzay13 4 หลายเดือนก่อน

      @@rustysillybandplease help it isn’t changing my movement

  • @landensargent477
    @landensargent477 ปีที่แล้ว +9

    Yo bro thank you so much. Me and my friends are making a game and I was having a hard time with the scripting part. This helped a lot thank you.

    • @RomeyoRodriguez
      @RomeyoRodriguez 2 หลายเดือนก่อน

      this is the same with me i could not have done it without you little plug its gonna be called ruthless battleground

  • @megameat875
    @megameat875 ปีที่แล้ว +12

    This is a really straight forward video, I understanded this really easily! I was using this for a while until my friends asked me about something, and I was wondering the same too. How would you make it so that it would change your custom animations BASED on if you step on a part/block? Like touching different parts gives you different custom animations, etc. I don't really know how to explain it, but basically kind of like a morph, but instead of changing your character, it changes your animations? Even if you dont see this, thanks a lot for these tutorials!

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +3

      Hello! In order to achieve the animation morphing, you can simply replace the code in the script with this:
      local runAnimation = "rbxassetid://000000" -- replace these with your own animation ids
      local idleAnimation = "rbxassetid://000000" -- replace these with your own animation ids
      local JumpAnimation = "rbxassetid://000000" -- replace these with your own animation ids
      local function onTouch(hit)
      local player = game.Players:GetPlayerFromCharacter(hit.Parent)
      if player then
      local humanoid = player.Character:WaitForChild("Humanoid")
      local animateScript = player.Character:WaitForChild("Animate")
      animateScript.run.run.AnimationId = runAnimation
      animateScript.idle.Animation1.AnimationId = idleAnimation
      animateScript.jump.JumpAnim.AnimationId = JumpAnimation
      end
      end
      game.Workspace.Part.Touched:Connect(function(hit)
      onTouch(hit)
      end)
      You can change the Part to whatever part you want in your game :)

    • @Arthemisishere
      @Arthemisishere ปีที่แล้ว

      @@rustysillyband Thanks, ive been looking for a way to get a part morph animations, its for a rp game that ive put tons of work into, kinda a shame it only has 100 visits and a game i made years ago with free models has 4k

    • @autisticbluesloth5244
      @autisticbluesloth5244 11 หลายเดือนก่อน

      when a player touches a specific part you could have a bindable event that sends the player and what animation to change + it's id (or have a module script taht contains all the animations) and then use the change animation script.

    • @CryzZ_Plays
      @CryzZ_Plays 6 หลายเดือนก่อน

      @@ArthemisishereWomp womp rp games are horrible

  • @red6xriseofnstions
    @red6xriseofnstions ปีที่แล้ว +4

    Thank you so much! I am learning how to animate on Roblox studio so fast because of your tutorials.

  • @yummywatermelon_FAZE
    @yummywatermelon_FAZE ปีที่แล้ว +3

    wow it works first time a script tutorial worked thx so much i was having trouble but after about copal tries I got it

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      Sorry about the trouble, but I'm glad it was working!

    • @yummywatermelon_FAZE
      @yummywatermelon_FAZE ปีที่แล้ว +2

      @@rustysillyband o its ok I'm glad its working too and thx again

  • @3erdsofar
    @3erdsofar ปีที่แล้ว +2

    man im so glafull u explained this its so helpfull
    (it worked try it out!)

  • @Shark-f4n
    @Shark-f4n ปีที่แล้ว +2

    OHH WAIT TYSM RUSTY YOU PUT A THING SAYING REPLACE ALL THE RUN WITH WALK OMG IT WORKED!!! TYSM

  • @wiceh850
    @wiceh850 ปีที่แล้ว +3

    second bro, i love your videos!!

  • @MoMoRos_Mos
    @MoMoRos_Mos 2 หลายเดือนก่อน +1

    Why isn't my script working now that I followed your instructions? Has the Animate code in Roblox Studio been updated or changed, especially since the Idle animation doesn't seem to reference the animation as before? It seems like it might be declared in a LocalScript already. Or did I make a mistake?

  • @CaneBlox869
    @CaneBlox869 ปีที่แล้ว +2

    Good Job i Like IT very much !! :D keep that work !!

  • @TheGoofiestUser69
    @TheGoofiestUser69 ปีที่แล้ว +3

    Bro thanks for this ur one of the best people to make tutorials i just subbed

  • @dilsan78
    @dilsan78 2 หลายเดือนก่อน +1

    If you forget to copy Id: in home menu click ToolBox then in the toolbox click the inventory button then click the button that says my models and press My Animations then right click whatever animation you need the Id of and press Copy Asset ID

  • @maxarnold1
    @maxarnold1 ปีที่แล้ว +3

    MAN I FINALLY DID IT AFTER LIKE THREE DAYS (my times been limited so thats why it took so long) I WAS WORKING ON FIXING JUMP FOR TWO DAYS AND TURNS OUT I JUST HAD TO ADD AN IDLE ANIMATION AS WELL!!!! SO HAPPY RN! TYSM AGAIN RUSTY!

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      Oh, sorry it took so long, but I'm so glad it worked! If you don't want the idle animation, I believe you can just delete everything in the script that has to do with the idle animation!

    • @maxarnold1
      @maxarnold1 ปีที่แล้ว +1

      @@rustysillyband No no the idle is perfect! I’m added a lot more custom anims now! Thanks!

    • @Drakoako
      @Drakoako 11 หลายเดือนก่อน

      Wait I’m having a problem with that could you help me I’ve been working on the jump animation for 2 days already and I’m so close on giving up I’m just stressed ab it

  • @Brigonade
    @Brigonade ปีที่แล้ว +2

    omg it worked! finally thank u so much! subbed

  • @snowbelltheicewing66
    @snowbelltheicewing66 10 หลายเดือนก่อน +1

    love how you actually kind of explain the code instead of just telling us to copy it lol

  • @QuestionabIeStudios
    @QuestionabIeStudios ปีที่แล้ว +2

    Hello, neither of the 3 anims are working, i have done everything in the tutorial like changing priorities and looping and stuff, yet it wont work.
    The game is r15 and the animations too, and the output doesnt say anything.
    Do you know what could the issue be?

  • @LazyMan707
    @LazyMan707 ปีที่แล้ว +1

    TY SM BRO!!!! IT WORKED THSI TIME!!! TY SM BROOOO!!!!! I CANT EVEN EXPLAIN IT!!! UR THE BEST!!!!

  • @maxarnold1
    @maxarnold1 ปีที่แล้ว +3

    editing is amazing, video in general is amazing, you, in general, are amazing! You’re gonna blow up man!

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      I appreciate that, you're amazing as well!

    • @maxarnold1
      @maxarnold1 ปีที่แล้ว +1

      @@rustysillyband anytime! Haha thanks man!

  • @NullFox__
    @NullFox__ ปีที่แล้ว +2

    How do i get r6 animation work? it doesnt work for me (if you don't know its alright)

  • @rush-ingaming3341
    @rush-ingaming3341 11 หลายเดือนก่อน +1

    I have a few questions. Do you know how to make these specific kinds of animations: Lets say I have a jump button, when I hold the jump button, it allows me to go into a flipping animation based on the direction I was pressing? And with attack animations, do you know how to make animaitons for a combo that can be interrupted by jumping, or by another attack button? Also if the basic attack string can be interrupted by a held down attack? Or an ability. Also if you press a button that lets you transform the character, but I think that is different than animations, idk.

  • @pro_gamr_edi_real_zomg
    @pro_gamr_edi_real_zomg ปีที่แล้ว +3

    nice video! i will probably use this later

  • @rogerdapenag6264
    @rogerdapenag6264 2 หลายเดือนก่อน +1

    I’m subscribing I’m liking I’m doing everything you help me a lot

  • @JasonTL123
    @JasonTL123 ปีที่แล้ว +2

    wow i really understand now! thank you so much!

  • @marcelinomarco9182
    @marcelinomarco9182 ปีที่แล้ว +2

    thank you its very helpful it worked for me

  • @Jslemonn
    @Jslemonn ปีที่แล้ว +8

    good job explaining what everything does in detail not much people do that 👍

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +4

      Glad you liked it! Yeah, I'm trying to make sure everyone can understand it.

    • @TheRealShadowVR
      @TheRealShadowVR ปีที่แล้ว +2

      @@rustysillyband Yeah you are the first youtuber I go to watch about scripting and etc. Thanks for the help.

  • @ChefTortrdee
    @ChefTortrdee ปีที่แล้ว +1

    DUDE THANK YOU SO MUCH, I'VE BEEN TRYING TO FIGURE THIS OUT FOR DAYS!!!!

    • @ChefTortrdee
      @ChefTortrdee ปีที่แล้ว +1

      I still can't get over on how much YOU helped me thank you so much.

  • @BlunderbussGamer
    @BlunderbussGamer ปีที่แล้ว +3

    Cool amazing! Your videos have made me an expert animator thanks!

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      Thanks! I'm glad you're learning a lot!

  • @Bebety1234
    @Bebety1234 ปีที่แล้ว +5

    I love how easy you make it for us to do it :)

  • @urfav_simpx
    @urfav_simpx ปีที่แล้ว +1

    Thanks so much it worked so I subscribed with bell!

  • @Nguyennganha289
    @Nguyennganha289 ปีที่แล้ว +1

    after months watching a bunch of tutorials, finally,... thanks for this tutorial!

  • @hyperspeedz7135
    @hyperspeedz7135 ปีที่แล้ว

    You do NOT UNDERSTAND how helpful this is me and my friends wanna make a little Roblox game and he put me in charge of animation and putting in said animation however I’m a hollow minded dumb dumb so thanks for the tutorial

  • @TheTrendEditor
    @TheTrendEditor 3 หลายเดือนก่อน

    Hello! I know I'm VERY, VERY late, but I want to ask a question. How do I make it so these animations are only for my user or a friend? If you could answer this, I'd be very happy!

  • @realarandomrobloxplayer
    @realarandomrobloxplayer ปีที่แล้ว +1

    I mad a game using your tutorials :D TAKE MY SUB

  • @Makiko12321
    @Makiko12321 2 หลายเดือนก่อน

    You are a life saver!! You teach me so well and its so simple!

    • @MoMoRos_Mos
      @MoMoRos_Mos 2 หลายเดือนก่อน

      Can you change the Idle animation.?

  • @NexodeReal
    @NexodeReal ปีที่แล้ว

    omg thank you i liked, everyone should too!

  • @JasonTL123
    @JasonTL123 ปีที่แล้ว +3

    hey @rustysillyband when i try using the run animation, by body becomes stiff, my jump and idle both work (all thanks to you) but what do you think i could to to fix?

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      Hmmm.. did you enable looping on your run animation?

    • @JustEmilo
      @JustEmilo ปีที่แล้ว

      i had a problem like that and that were becauae i forgot the "rbxassetid://"

  • @teodorcz37
    @teodorcz37 ปีที่แล้ว +2

    You deserve more likes than just 200 likes, thanks for tutorial.

  • @LozeiiYT
    @LozeiiYT ปีที่แล้ว +31

    everytime i follow one of these f tutorials and do everthing correct down to the minimalist detail and it doesnt work HOW DO YOU GET THE SCRIPTS TO BEHAVE

    • @xxdy_fuzioinzxx7066
      @xxdy_fuzioinzxx7066 9 หลายเดือนก่อน +1

      LITERALLY

    • @XER_gamming
      @XER_gamming 8 หลายเดือนก่อน +2

      Yea he’s right

    • @Candy-ui5yl
      @Candy-ui5yl 7 หลายเดือนก่อน

      Same bro

    • @Thatt_Matt
      @Thatt_Matt 7 หลายเดือนก่อน +1

      I tried so many different ways and it still doesn't work

    • @Jackson-h4u
      @Jackson-h4u 6 หลายเดือนก่อน

      ​@@Thatt_Matt Sometimes Roblox itself changes. Try using :LoadAnimation() on the Animator like this: Humanoid.Animator: LoadAnimation("Animation Name")

  • @jaydejarrett2850
    @jaydejarrett2850 ปีที่แล้ว +6

    So in my game, the thing you play as is a modified model under the name of 'StarterCharacter" that is placed into the StarterPlayer folder. How would I get this script to work with this if possible?

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      I'm not so sure this script would work with a Starter Character as this changes the animations inside of it. If you'd like to, you can follow my other how to create custom animations video that does work with custom characters. I created the video you just watched to expand upon my other video with the similar title. here's the link: th-cam.com/video/CQQvSkD1Hlw/w-d-xo.html

    • @FoxeyWind
      @FoxeyWind ปีที่แล้ว +2

      I wanna do the same thing, so ill watch the old vid

  • @Bupu
    @Bupu 3 หลายเดือนก่อน

    The best tutorial ever in the world. Thank you so much.

  • @TheFourDoofuses
    @TheFourDoofuses ปีที่แล้ว +2

    What should i do if i want to add my custom walk animation?

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      You can follow the steps in the tutorial to create your own custom animations I believe.

  • @dilsan78
    @dilsan78 2 หลายเดือนก่อน +2

    i swear whenever i use someone's script it never works and i spend so much time tryna figure out whats wrong😭

  • @benshija8208
    @benshija8208 ปีที่แล้ว +3

    I learned animating bc of you your the best

  • @codersmaxims6878
    @codersmaxims6878 ปีที่แล้ว +3

    IDK If this is deprecated already but it just doesn't work lol, it changes the Animate scripts animationId correctly but the animations that play are just the normal ones. I had to go in manually into the "Animate" script to change the animations, at least for me I guess.

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      Hmmm.. Could you possible tell me what's not working? It might be an error in the script. You can check by going into the output in the view tab.

    • @codersmaxims6878
      @codersmaxims6878 ปีที่แล้ว +1

      @@rustysillyband It simply just isnt working. There is no error code. It's changing the characters animate script IDs through a local script, and its doing that but the animations are just not playing.

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      @@codersmaxims6878 Try switching it from a local script, to a normal script inside ServerScriptService. Let me know if that works better.

  • @mtgb-pu8vl
    @mtgb-pu8vl ปีที่แล้ว +1

    thank you for this informative video it helped me a lot!!!!

  • @Lscarad
    @Lscarad ปีที่แล้ว +1

    thanks this helps, but sometimes the normal idle animation plays when you walk is there anyway to fix it?

  • @rubyred2705
    @rubyred2705 ปีที่แล้ว +2

    ive tried it but its not working, ive put the game settings to r6, ive used the r6 dummy, ive used my own id's but its not working, and its not the run to walk, ive tried that and it didnt work. please help me

  • @Blue_Globe
    @Blue_Globe ปีที่แล้ว +2

    Hey rusty, I know this might sound a bit stupid but I am struggling making letters for stuff like signs if that makes any sense, for example on pls donate the roblox game you can type in something for the sign, I was wondering if there was any way to do this without letting anyone apart from the creator from changing it, I dont really know if you understand what I mean but if so there is a video idea that would really help me. Thank you 🙏🙏

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      I think I understand! I can try and make it for you!

    • @Blue_Globe
      @Blue_Globe ปีที่แล้ว +2

      @@rustysillyband Thank you!

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      @@Blue_Globe No problem!

  • @vomitstone
    @vomitstone 10 หลายเดือนก่อน

    thank you so much omg i been struggling with this

  • @DevvStories
    @DevvStories ปีที่แล้ว

    so for the inhale i got a question. im trying to make it pause for 2 seconds while the inhale plays but its always moving. can u help plz?

  • @55l5l55
    @55l5l55 6 หลายเดือนก่อน

    I Can't Thank You Enough ! You Are a Saver

  • @joha_nn
    @joha_nn ปีที่แล้ว +1

    hey man i have a question if i do like the fall,toolnone,toollunge,wave animation, and dances will it still work if i copy the names?

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      Do you mean copy the animation ids?

  • @jothyeen
    @jothyeen ปีที่แล้ว +1

    Does this script happen to work with a custom character (tried both r15 and r6 setting)? I can't seem to get the script to work with mine, so none of the animations play. My character model was made in blender.

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      You should be able to follow this tutorial for custom character animations! th-cam.com/video/CQQvSkD1Hlw/w-d-xo.html

  • @akasuandakasa
    @akasuandakasa ปีที่แล้ว

    Great Video it really helped me out a lot!!!

  • @Vempirebacon
    @Vempirebacon 10 หลายเดือนก่อน +1

    didnt work😞 i did what did you said to do its did the normal r6 animation

  • @prismaticjms
    @prismaticjms ปีที่แล้ว +1

    Just wondering, does this all work with Moon Animator animations? The "Run"s seem to be working, but my movement is static. (Changing it to "Walk" makes it play the normal animations for me.)

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      Unfortunately I do not know much about the moon animator. I'm not too sure if it works with it or not.

  • @4RL0RD
    @4RL0RD ปีที่แล้ว +1

    Hi! My jumping animation seems to play for just 1 second, and then cuts off. I have a longer animation of like maybe 3 seconds? So im missing half of my jump haha. Do you know how to fix that?

    • @Satepin
      @Satepin ปีที่แล้ว

      must be that your jump itself doesnt last enough so you transition to falling

  • @flyntasticplayzyt5513
    @flyntasticplayzyt5513 ปีที่แล้ว +2

    Hi thx for the Animation tutorial!
    What must I write in my script when you want the whole sever to Experience this Amazing magic?

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      As long as you put the code inside a normal script inside of ServerScriptService, the whole server will be affected by the animations.

    • @flyntasticplayzyt5513
      @flyntasticplayzyt5513 ปีที่แล้ว +2

      Tysm will test it

  • @PixTheBDRGuy
    @PixTheBDRGuy ปีที่แล้ว +2

    Small problem. My idle doesnt have an Animation1 or Animation2. What do i do?

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      That means something is very wrong with your animate script. I'm not sure what exactly is wrong as this has never happened before🤔

    • @LozeiiYT
      @LozeiiYT ปีที่แล้ว

      well thats helpful@@rustysillyband

  • @koala_in_space
    @koala_in_space 6 หลายเดือนก่อน

    Thank you! really helpful video.

  • @topheat2691
    @topheat2691 9 หลายเดือนก่อน

    Sometimes when I walk there is like chance for the run animation to stop working? like when I jump then walk, it works, but when I walk normally, it doesn't work

  • @aidennathanael3786
    @aidennathanael3786 ปีที่แล้ว +1

    Thanks a lot! This one really helped me out

  • @michaelreed8091
    @michaelreed8091 7 หลายเดือนก่อน

    i know this was a year ago, but is there a way that i can have this animation only work on a certain player? lets say like.. an owner only type thing?

  • @Mariko2022
    @Mariko2022 ปีที่แล้ว

    do you need to use all three? or can you just have the idle and jump? I have another script for run, but it wont work if i add the run part to this script

    • @aceday6811
      @aceday6811 ปีที่แล้ว

      Yeah, just take away the extra lines of codes

  • @SanzenHere
    @SanzenHere 9 ชั่วโมงที่ผ่านมา

    When i start the game and walk or jump no animation plays but i put all of the ids in there can somebody help?

  • @omarabdelrahmanyassin8034
    @omarabdelrahmanyassin8034 ปีที่แล้ว +8

    Idk why no one makes animations and releases them unless roblox

  • @benjaminzieske
    @benjaminzieske 23 วันที่ผ่านมา

    this was helpful! although... i'm kinda confused why I can't just put the anims in the animate script, it's weird

  • @TheSpaceLover5
    @TheSpaceLover5 7 หลายเดือนก่อน +1

    Hey rusty, i got a problem u see i listen and did everything correctly for the run animation but there's a problem with it, when i test the animation in game it just doesn't work and idk why. Can u pls tell me why?

  • @hypertoniccs
    @hypertoniccs ปีที่แล้ว +2

    Hello! This is a great video, but some things werent working! Me and my friends are making a multiplayer game. When I'm Testing, the animations work fine with me, but when my friend tests, his animations are completely static. Do you know a way to fix this?

    • @axelrasback5168
      @axelrasback5168 ปีที่แล้ว

      Its because the owner of the game most publish the animations. If u do it as not the owner The others wont see it.

    • @AnytimeUseless
      @AnytimeUseless 5 หลายเดือนก่อน

      I have a different problem, I'm trying to change animations when i click a button but when i do it the animations mix and for example: i see the animation correctly but the other people see it mixed and weird

  • @PbjFTF
    @PbjFTF ปีที่แล้ว +2

    yoo thx i got the idle to work but the jump and run wont. is there anyway i could fix this?

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      Make sure your animation priorities are set to the right ones. Also, make sure you have looping enabled on the run and idle animations.

  • @Francysus
    @Francysus หลายเดือนก่อน

    OMG OMG IT JUST WORKED FINNALLY TYYYYYYYY

  • @theyfw_nuni5346
    @theyfw_nuni5346 ปีที่แล้ว

    @rustysillyband i have tried everything but the walk animation still isn’t working an i don’t know why please respond

  • @chits23
    @chits23 2 หลายเดือนก่อน

    Omg the best teacher in history ty so Much

  • @Noficialof
    @Noficialof ปีที่แล้ว +1

    really helped thanks!

  • @thelegoonmyeggo7033
    @thelegoonmyeggo7033 ปีที่แล้ว

    the running animation wouldnt work for me. I double checked the script like 500 times rewatched the tutorial, is it different in r6 then r15

  • @Clippermakesgames
    @Clippermakesgames ปีที่แล้ว +1

    I love your vids!!!

  • @stefanh7794
    @stefanh7794 2 หลายเดือนก่อน

    a life saver, thanks!

  • @Пельмень-ч2ц
    @Пельмень-ч2ц ปีที่แล้ว +2

    As i can see, you still answering so my problem is when i play test game with animations idle animation looks fine, but when i start walking its like "loading animation" and then plays them normally. Same with jump (when i jump for the first time, animation doesnt work, when jumping again, it works fine. I hope you will help

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      It might've been a little bit of lag in Studio maybe? Otherwise, do you have a wait() inside your script?

  • @AlxMrts
    @AlxMrts 9 หลายเดือนก่อน

    hello, i really enjoyed the tutorial but i have a problem, the script isnt working, on logs appears: CharacterAppearenceLoaded is not a valid member of Player -my name of roblox-, could you tell me how to fix this? thank you and keep the good work!

  • @lucas2450
    @lucas2450 ปีที่แล้ว

    my running animation isnt working, the jump and idle are working perfectly, but the running animation refuses to work. im not sure how to fix this

  • @blade5518
    @blade5518 ปีที่แล้ว +1

    bro u earned a sub thank you verymuch

  • @EthanRodriguez-h3f
    @EthanRodriguez-h3f ปีที่แล้ว +1

    thank you! your the best!

  • @meowmeow9617
    @meowmeow9617 ปีที่แล้ว

    What does Animation2 do for idle and why are there 2 in the first place?

  • @Animationswell22
    @Animationswell22 ปีที่แล้ว

    Question can I use moon animator for the animations?

  • @Ayo_The_Pizza_Here.
    @Ayo_The_Pizza_Here. 2 หลายเดือนก่อน

    for some reason this no longer works for r6 (idk if it stops working for r15 tho), no error or anything like that, it just refuses to load because no
    edit: just saw ur r6 video, that one works for some reason, idk why but at least it works

  • @Riv3rz
    @Riv3rz 10 หลายเดือนก่อน

    Earned yourself a sub with this one 👍👍

  • @Fireball2464v1
    @Fireball2464v1 ปีที่แล้ว +2

    I dont see the properties menu when I open script, how do a I fix it please

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว +1

      Up on the top of the screen, there's a little tab called "View" Click on that and you should see a lot of things show up. Over on the left, next to "Explorer" You should see a large button called "Properties" Click on that and it should open :) Thanks for watching, make sure to subscribe! Did you have any other problems?

  • @V1DCELLS
    @V1DCELLS 9 หลายเดือนก่อน +1

    bro thank you , this has to be the best tutorial I have ever seen

  • @lacteye230
    @lacteye230 ปีที่แล้ว +2

    For some reason when I use my animation it’s getting interrupted by the default animation.

    • @justrandom1674
      @justrandom1674 ปีที่แล้ว

      yeah i followed all the steps but its just doing the default animation

  • @Carlosromero-ei6zp
    @Carlosromero-ei6zp ปีที่แล้ว +1

    what's the difference of walk and run in roblox studio??

    • @malekdz201
      @malekdz201 27 วันที่ผ่านมา

      Walk is like walkspeed is 0 - 15 when you can see in the phone or controller you move the jowstick slowly it plays the animation slower but you can change the animation, and run is for 16 walkspeed or more.

  • @GamertheposhEpic
    @GamertheposhEpic หลายเดือนก่อน +1

    for people who lazy
    local Players = game:GetService("Players")
    local function onCharacterAdded(character)
    local humanoid = character:WaitForChild("Humanoid")

    local animateScript = character:WaitForChild("Animate")
    end
    local function onPlayerAdded(player)
    player.CharacterAppearanceLoaded:connect(onCharacterAdded)
    end
    Player.PlayerAdded:connect(onPlayerAdded)

  • @SharkyGull
    @SharkyGull 7 หลายเดือนก่อน +2

    I have done everything correctly, but when I click play, The run animation is fine, but the idle animation will not load in, does anyone know how to fix this? Thanks.

    • @rustysillyband
      @rustysillyband  7 หลายเดือนก่อน +1

      Hi there! It might be that Roblox hasn't moderated your animation just yet. It should be fine within a day or two. Thank you so much for watching, Sharky! Have a great day!

    • @SethplaysRGs
      @SethplaysRGs 6 หลายเดือนก่อน

      Yo, how did you get your run to work?

  • @Bidombamb
    @Bidombamb 10 หลายเดือนก่อน

    it just repeteadly says "Failed to load animation - sanitized ID:" in the output and it won't work!

  • @1et311
    @1et311 ปีที่แล้ว +1

    idk if i'm doing anything wrong but it just doesn't work for me
    i tried this on a blank baseplate and it worked but it doesn't work in the game i want

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      Are you using it in a group game? If so, you need to publish your animations to the group by changing the creator in the little window that pops up to your group. Otherwise, I'd make sure there are no errors, and that you're using your same animation ids.

  • @mohamadbenhattat6997
    @mohamadbenhattat6997 9 หลายเดือนก่อน +1

    in the console it say CharacterAppearanceLoaded is not a valid member of Players "Players"

  • @Star_F0x
    @Star_F0x ปีที่แล้ว +2

    As i follow every steps the "Avatar Editor" doesn't work at all like it's grey like as it was unavailable or smth at 5:38 , does anyone knows why?

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      I am not too sure.. Did you click on a dummy to make an animation?

    • @Star_F0x
      @Star_F0x ปีที่แล้ว +1

      @@rustysillyband yeah i did all the steps but even when i try restarting roblox studio and using differents game it doesn't work

    • @rustysillyband
      @rustysillyband  ปีที่แล้ว

      @@Star_F0x Hmmm.. Maybe try restarting your computer?

  • @MichaelGrube-sp8dd
    @MichaelGrube-sp8dd 4 หลายเดือนก่อน

    it isn't working
    i am stuck with this running animation,
    i did it all right but still it won't work..
    please someone help me