Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

My sword script's animations not working?

Asked by
JoneXI 51
5 years ago

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:

01script.Parent.Blade.Touched:Connect(function(p)
02 
03if script.Parent.CanDamage.Value == true then
04 
05script.Parent.CanDamage.Value = false
06 
07p.Parent.Humanoid:TakeDamage(20)
08 
09end
10 
11end)

LocalScript:

01local canAttack = true
02 
03script.Parent.Equipped:Connect(function()
04    local idle = script.Parent.Parent.Humanoid:LoadAnimation(script.Idle)
05 
06    idle:Play()
07end)
08 
09script.Parent.Unequipped:Connect(function()
10    local idle = script.Parent.Parent.Humanoid:LoadAnimation(script.Idle)
11 
12    idle:Stop()
13end)
14 
15script.Parent.Activated:Connect(function()
View all 30 lines...
0
use game.Players.LocalPlayer.Character instead of script.Parent.Parent, it's more convenient and more obvious DeceptiveCaster 3761 — 5y
0
You need to load the animation once, you don't need to load it each time an event is called Time_URSS 146 — 5y
0
So I load the animations as a variable? JoneXI 51 — 5y

Answer this question