This is something I have been searching for, and so have many others. So I just decided,
If you don’t know what this is, its basically Euphoria Ragdoll but for Roblox.
You might have seen this if you played GTA V.
When you fall, your character tries to protect itsself while falling.
You can even animate your own poses and stuff.
All you need to do is call the :build() method once making a new instance, call :attachAll(), and play an animation with the hints!
local RagIK = require(RAGIK_PATH)
local Mgr = RagIK.new(Character)
Mgr:build();
Mgr:attachAll();
-- ragdoll the char
-- play the animation you created with the dummy
-- boom, posing ragdolls
Please look at the source code. I’ve looked at PS_LOL’s code and it uses a fairly similar technique to what I use, but that doesn’t mean I copied it. Coincidences happen.