Why does this error occur with LoadAnimation()?
This script is inside a tool, in the StarterPack. It works fine the first time it runs, but when I reset, It gives the following error:
00:54:25.724 - LoadAnimation requires the Humanoid object (Player1.Humanoid) to be a descendant of the game object
I am using Filtering enabled/Non-experimental mode, so I suspect the issue is from it, since this only happens in the client/in game but not in the Studio
03 | local Tool = script.Parent.Parent |
04 | local Player = game.Players.LocalPlayer |
05 | local Character = Player.Character or Player.CharacterAdded:wait() |
06 | local Mouse = Player:GetMouse() |
07 | local Humanoid = Character:WaitForChild( "Humanoid" ) |
08 | local AnimFolder = Tool:WaitForChild( "Animations" ) |
09 | local Storage = game.ReplicatedStorage |
10 | local EventsFolder = Storage:WaitForChild( "Events" ) |
11 | local FunctionsFolder = Storage:WaitForChild( "Functions" ) |
15 | local HoldAnimation = AnimFolder:WaitForChild( "Hold" ) |
16 | local SwingAnimation = AnimFolder:WaitForChild( "Swing" ) |
19 | repeat wait() until Character.Humanoid |
20 | print ( tostring (Humanoid), typeof(Humanoid)) |
21 | local HoldTrack = Humanoid:LoadAnimation(HoldAnimation) |
22 | local SwingTrack = Humanoid:LoadAnimation(SwingAnimation) |
25 | Tool.Equipped:connect( function () |
27 | Tool.Activated:connect( function () |
32 | Tool.Unequipped:connect( function () |
Roblox Forums didn't help one bit, so I expect people here would be more helpful
Thanks in advance :)