I have an animation that uses 2 hands however I want to use a tool with the animation but only the left arm will carry out the animation and the right will still hold the tool, how can I fix this? Also here is the content of the local script within the tool.
Tool = script.Parent local player = game.Players.LocalPlayer repeat wait() until player.Character ~= nil local hum = player.Character:WaitForChild("Humanoid") local animation = Tool.Animation local AnimTrack = hum:LoadAnimation(animation) Tool.Equipped:connect(function(mouse) mouse.Button1Down:connect(function() AnimTrack:Play() end) end) Tool.Unequipped:connect(function() AnimTrack:Stop() end)
Try this
Tool = script.Parent local player = game.Players.LocalPlayer repeat wait() until player.Character ~= nil local hum = player.Character:WaitForChild("Humanoid") local animation = Tool.Animation local AnimTrack = hum:LoadAnimation(animation) Tool.Equipped:connect(function(mouse) mouse.Button1Down:connect(function() AnimTrack:Play() end) end) Tool.Parent = game.ServerStorage wait(.1) Tool.Parent = game.Players.LocalPlayer.Backpack
Not tested, studio is broken for me