I was writing a running script and when I tried to add animations to it I get this error
Invalid animation id '<error: unknown AssetId protocol>':
I don't know what I did wrong but here is the script
01 | local players = game.Players.LocalPlayer |
02 | local character = players.Character |
03 | local UIS = game:GetService( "UserInputService" ) |
04 | local speed = 27 |
05 |
06 | UIS.InputBegan:Connect( function (key) |
07 | if key.KeyCode = = Enum.KeyCode.LeftShift then |
08 | character.Humanoid.WalkSpeed = speed |
09 | local Anim = Instance.new( "Animation" ) |
10 | Anim.AnimationId = 'rbxassitid://2217747028' |
11 | local PlayRunAnim = character.Humanoid:LoadAnimation(Anim) |
12 | PlayRunAnim:Play() |
13 | end |
14 | end ) |
15 |
16 | UIS.InputEnded:Connect( function (key) |
17 | if key.KeyCode = = Enum.KeyCode.LeftShift then |
18 | character.Humanoid.WalkSpeed = 16 |
19 | end |
20 | end ) |
'rbxassitid://2217747028' this is wrong, not assitid, its assetid
Use this:
01 | local players = game.Players.LocalPlayer or game.Players.PlayerAdded:Wait() |
02 | local character = players.Character or players.CharacterAdded:Wait() |
03 | local UIS = game:GetService( "UserInputService" ) |
04 | local speed = 27 |
05 |
06 | UIS.InputBegan:Connect( function (key) |
07 | if key.KeyCode = = Enum.KeyCode.LeftShift then |
08 | character.Humanoid.WalkSpeed = speed |
09 | local Anim = Instance.new( "Animation" ) |
10 | Anim.AnimationId = 'rbxassetid://2217747028' |
11 | local PlayRunAnim = character.Humanoid:LoadAnimation(Anim) |
12 | PlayRunAnim:Play() |
13 | end |
14 | end ) |
15 |
16 | UIS.InputEnded:Connect( function (key) |
17 | if key.KeyCode = = Enum.KeyCode.LeftShift then |
18 | character.Humanoid.WalkSpeed = 16 |
19 | end |
20 | end ) |
ok so i think you have a problem with your animations priority. i struggled with this quite a lot in the past and recently found out how to fix it all you have to do is go to your animaion plugin and then import the animation you want in the editor from there you open the edit tab and look for the "priprity" setting. you will have to set it to "action"
if this helped you please accept my answer. have a nkce day