My sword script's animations not working?
Hello, Im new at scripting and I need some help. So, I have a sword script and the damage works fine, but the animations... When I equip the sword the idle animation one hand does what have to do but the other stays default, after I click the attack animation works and my hands make idle animation normally. When I unequip the Sword my hands stuck in Idle animation.
I also get an error: "Humanoid is not a valid member of Backpack"
I also used this video to make the swords handle cause I dont have tool grip editor... https://www.youtube.com/watch?v=dRGEAethTGA
Script:
01 | script.Parent.Blade.Touched:Connect( function (p) |
03 | if script.Parent.CanDamage.Value = = true then |
05 | script.Parent.CanDamage.Value = false |
07 | p.Parent.Humanoid:TakeDamage( 20 ) |
LocalScript:
03 | script.Parent.Equipped:Connect( function () |
04 | local idle = script.Parent.Parent.Humanoid:LoadAnimation(script.Idle) |
09 | script.Parent.Unequipped:Connect( function () |
10 | local idle = script.Parent.Parent.Humanoid:LoadAnimation(script.Idle) |
15 | script.Parent.Activated:Connect( function () |
16 | local attack = script.Parent.Parent.Humanoid:LoadAnimation(script.Attack) |
17 | local idle = script.Parent.Parent.Humanoid:LoadAnimation(script.Idle) |
19 | if canAttack = = true then |
27 | script.Parent.CanDamage.Value = true |