basically what i want is so when i equip my tool, it will play the custom equip animation
but it's not working so yea
here's a snippet of the code i dont know how to change the line numbers in this question thing (line 18 to 33)
01 | staff.Equipped:Connect( function () |
02 | --check if the body type is R6 or R15 |
03 | if character:FindFirstChild( "Lower Torso" ) then --if the body type is R15 |
04 | local equipR 15 = Instance.new( "Animation" ) --makes animation instance |
05 | equipR 15. AnimationId = "rbxassetid://4967140370" --sets the animation ID |
06 | local equipAnimTrackR 15 = hum:LoadAnimation( "equipR15" ) |
07 | equipAnimTrackR 15 :Play() |
08 | end |
09 |
10 | if character:FindFirstChild( "Torso" ) then --if body type is R6 |
11 | local equipR 6 = Instance.new( "Animation" ) --makes animation instance |
12 | equipR 6. AnimationId = "rbxassetid://4967132516" |
13 | local equipAnimTrackR 6 = hum:LoadAnimation( "equipR6" ) |
14 | equipAnimTrackR 6 :Play() |
15 | end |
16 | end ) |
there is nothing in the output pls help
Don't use string
, just use the animation.
01 | staff.Equipped:Connect( function () |
02 | --check if the body type is R6 or R15 |
03 | if character:FindFirstChild( "Lower Torso" ) then --if the body type is R15 |
04 | local equipR 15 = Instance.new( "Animation" ) --makes animation instance |
05 | equipR 15. AnimationId = "rbxassetid://4967140370" --sets the animation ID |
06 | local equipAnimTrackR 15 = hum:LoadAnimation(equipR 15 ) --Use name |
07 | equipAnimTrackR 15 :Play() |
08 | elseif character:FindFirstChild( "Torso" ) then --if body type is R6 |
09 | local equipR 6 = Instance.new( "Animation" ) --makes animation instance |
10 | equipR 6. AnimationId = "rbxassetid://4967132516" |
11 | local equipAnimTrackR 6 = hum:LoadAnimation(equipR 6 ) --Use name |
12 | equipAnimTrackR 6 :Play() |
13 | end |
14 | end ) |
More details:Wiki.
Edit: Btw I shorted the code.