so im making a ragdoll type game and I need to know how I can make Ragdoll on fall or something like that for example
when they fall from a very high building the ragdoll enables
im bad at explaining stuff but I hope you can get a idea of what im trying to say but anyways I looked for some solutions and cant find any
if you find any solutions that would be very very nice
Are you asking how to make the ragdoll effect? or how to trigger it?
I want to trigger the ragdoll like when they fall from a height the ragdoll triggers
So i would do that from a local script.
local plyrChar = LocalPlayer.Character
local FALL_HEIGHT_LIMIT = what ever y pos you want to be the limit
RunService.RenderStepped:Connect(function(dt)
if plyrChar.HumanoidRootPart.Position.Y < FALL_HEIGHT_LIMIT then
RagDoll()
end
end)
1 Like