Physical Animation Help

I made a physical animation script(s) and i was wondering how i would pose the character in ragdoll

So it clones the players animations to a ragdoll and it works really well but i need a way for the player to go full ragdoll and still be able to play animations like on the ground.

Physical Animation: https://gyazo.com/cc7b53dd64537bf5d916c5cc8ee4186f

i have tried platform standing and then playing animations but its not ragdoll at all. ive tried using constraints to position the limbs while ragdoll.
the actual player is invisible and its just a ragdoll over the player.

1 Like

since the animation is still being played on the invisible player just detect whenever an animation is being played on the character an replicate to the ragdoll, you can do it with the character’s humanoid like this:

local Humanoid = --put the characters humanoid here
local RagdollHumanoid = --put the ragdoll humanoid here
Humanoid.AnimationPlayed:Connect(function(anim)
     local RagAnim  = RagdollHumanoid:LoadAnimation(anim)
     RagAnim:Play()
end)

that would work but the physical character is a ragdoll and does not have motors so it can not play animations.

well after you play the ragdoll animation why not disable all character movement input and only play the animations

Well is there an alternative to platform stand because what i am trying to achieve is like a protection animation for when the player is falling or rolling down a hill. The humanoid root part stops the character from ragdolling realisticly on platform stand. Here is an example of what i mean: https://gyazo.com/abb54c21c845d72f1e62f3b059864942

how does your protect animation work? is the player on the floor in the animation or is the player standing up?

well they would be falling down a hill or a slope and be playing that protection pose.
So instead of just sliding down the hill like this: https://gyazo.com/082f6230cda74a788b0d43741d783e96
there would be an animation playing like the one in the other gif
edit:
the green is the ragdoll and the red is the actual player which is usually invisible: https://gyazo.com/a7b1896daff9427da9baeb3ece5a5729

1 Like

theres also a things that happens if you are walking as a normal character and get hit hard enough you go into a kind of ragdoll state where animations play still its a little different from platform stand but if i could replicate that i think i could get it to work.