Whenever I manipulate the character’s Waist C0, the animations break. The arms and head don’t move with the waist, but rather stay in the same rotation as seen below;
Is there any possible fix to this problem without completely redoing the animations? If so please tell me below in the comments, I GENUINELY do not know why this happens
You can use the Humanoid’s Animator: local animator = player.Character.Humanoid:GetAnimator()
animator:SetStateEnabled(“Idle”, true)
animator:SetStateEnabled(“Running”, true)
If you’re using a Packages folder, you need to add a line to the top of your MainModule: local Animator = require(game.ReplicatedStorage.Packages.Animator)
I think you’re animating your model in a BP, which means you’re not using the Animator library, so you can’t just set states.