So I made a throwing animation for my game. I have the scripts and the animation and on an npc, it works perfectly fine. When I shift it over to a player however, it doesn't work. here is my localscript:
1 | character = game.Players.LocalPlayer.Character |
2 |
3 | game.ReplicatedStorage.Animation:Clone().Parent = character |
4 |
5 | local animation = character.Humanoid:LoadAnimation(character:WaitForChild( "Animation" )) |
6 |
7 | animation:Play() |
in the output it says LoadAnimation requires the Humanoid object (Faazo.Humanoid) to be a descendant of the game object
What does this mean? The humanoid isn't a descendant of game
? It is though. Please help.
Try checking if humanoid is a part of the character before playing the animation, I'll give just you the script:
1 | local character = game.Players.LocalPlayer.Character |
2 | local humanoid = character:WaitForChild( "Humanoid" ) |
3 |
4 | game.ReplicatedStorage.Animation:Clone().Parent = character |
5 |
6 | local animation = humanoid:LoadAnimation(character:WaitForChild( "Animation" )) |
7 |
8 | animation:Play() |
Hope this helped you with your problem! Please accept my answer if it worked for you.
MajinBluee
There should be a line that says the id of the animation, you can't pop out your animation with the power of your mind... Here is a code to make it more simple:
1 | local animation = Instance.new( "Animation" ) |
2 | animation.AnimationId = "http://www.roblox.com/Asset?ID=AnimationIdhere" |
3 |
4 | local animTrack = Humanoid:LoadAnimation(animation) |
5 | animTrack:Play() |