Easily Animate Tool Handles (ROBLOX STUDIO)

แชร์
ฝัง
  • เผยแพร่เมื่อ 4 ก.พ. 2025
  • In this video I show you how to animate tool handles in Roblox Studio using Motor6Ds, it's simpler than you might think!

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

  • @NyxNyxie
    @NyxNyxie 3 หลายเดือนก่อน +10

    The only tutorial that shows how to do it without making it as complicated as humanly possible.

  • @Quadiest-q3b
    @Quadiest-q3b 3 หลายเดือนก่อน +2

    I been wanting to learn this for a year now, now i finally found the right video that helps me, thank you.

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

    Underrated. deserves more recognitions!

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

    You should consider making a small game tutorial nothing crazy something relatively quick and easy

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

      uppp

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

    Been needing this, thank you

  • @fredzhang-d1c
    @fredzhang-d1c 3 วันที่ผ่านมา

    Thank you so much

  • @YellowYarn
    @YellowYarn 17 วันที่ผ่านมา

    This is really useful! Thanks

  • @Peps_Mc
    @Peps_Mc 7 วันที่ผ่านมา

    wow it works!

  • @ManlikeJet
    @ManlikeJet 17 วันที่ผ่านมา +2

    r15 dont work for me

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

    I'm a bit of a seasoned programmer, and I normally don't comment on anything: but thank you for showing how to rig the tool up to the character as well, as I was a bit stuck. No other tutorial showed specifically that, and I'm pretty tired.

  • @sirshove9237
    @sirshove9237 29 วันที่ผ่านมา +1

    can you also show tutorial on how to make an idle for tool? i mean once the animation is over it will stay on that pose

    • @kaihookins3273
      @kaihookins3273 4 วันที่ผ่านมา

      just loop the animation

  • @Scout-u5j
    @Scout-u5j 26 วันที่ผ่านมา

    Works!, thank you!

  • @jazzywitemgemschan6421
    @jazzywitemgemschan6421 20 วันที่ผ่านมา

    I have a question, how would I connect something to both arms? Would I do it by just doing the same thing I did for the right arm to the left arm?

  • @SoyGatazo
    @SoyGatazo 3 หลายเดือนก่อน +4

    local character = script.Parent
    local humanoid = character:WaitForChild("Humanoid")
    local function childAdded(Object)
    if object:Isa('Tool') then
    local handle = object:FindFirstChild('Handle')
    if handle then
    local rightArm
    if humanoid.RigType == Enum.HumanoidRigType.R6 then
    rightArm = character:FindFirstChild('RightHand')
    else
    rightArm = character:FindFirstChild('Right Arm')
    end
    if rightArm then
    local rightGrip = rightArm:FindFirstChild('RightGrip')
    if rightGrip then
    rightGrip.Enabled = false
    local motor = Instance.new('Motor6D')
    motor.Part0 = rightArm
    motor.Part1 = handle
    motor.C0 = CFrame.new(0,-rightArm.size.Y/2,0)*CFrame.Angles(-math.pi/2,0,0)
    motor.C1 = object.Grip
    motor.Name = 'ToolGrip'
    motor.Parent = rightArm
    repeat
    rightGrip.AncestryChanged:Wait()
    until rightGrip ˜= rightArm
    motor:Destroy()
    end
    end
    end
    end
    end
    character.ChildAdded:Connect(childAdded)
    ---------The script----------

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

      thanks

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

    Thank you

  • @BeeBuzzyGaming
    @BeeBuzzyGaming 14 วันที่ผ่านมา

    how do like a idle while holding a sword

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

    script.Parent.Activated:Connect(function()
    local a = script.Parent.Parent.Humanoid.Animator:LoadAnimation(script.Parent:WaitForChild("Animation"))
    a.Priority = Enum.AnimationPriority.Action4
    a:Play()
    End)

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

    Also do you know why C0 is set to that? I checked the documentation but couldn't understand why C0 for the motor is at the palm of the hand

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

    Could you also make a tutorial on how to change the hand/hands position alongside the tool?

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

      add plugins tool grip editor

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

    How to like, animate not only the handle but other parts of the tool? Kinda like The Mimic lantern

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

      Add more Motor6Ds but inside of the handle instead, the animator will recognize it if you do it correctly.

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

      I dont get it, a tutorial or a detailed guide in the comments would be nice 💀 kinda like The Mimic where when you equip the item it keeps moving forever, like you dont have to click for it to animate, the animation keeps looping until you unequip it.

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

    Thanks

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

    when I change scripts and I create a system to save the animation it triggers when I press e but it no longer works

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

    is there a sepcific reason why the motor6d's parent is the right arm? Or does that make it easier to find?

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

      It's so the tool follows the right arm.

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

    2:32 Scripting

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

    First also i was watching 6 seconds ago

    • @Site-42_com
      @Site-42_com 3 หลายเดือนก่อน +2

      This type of comment ruin the whole comment section