How to create Ragdoll? - Roblox Studio Tutorial #9

Published: 28 August 2024
on channel: fil1pex
32
1

script :
--startercharacterscripts
local hum = script.Parent:WaitForChild("Humanoid")

hum.BreakJointsOnDeath = false

hum.Died:Connect(function()
for index,joint in pairs(script.Parent:GetDescendants()) do
if joint:IsA("Motor6D") then
local socket = Instance.new("BallSocketConstraint")
local a1 = Instance.new("Attachment")
local a2 = Instance.new("Attachment")
a1.Parent = joint.Part0
a2.Parent = joint.Part1
socket.Parent = joint.Parent
socket.Attachment0 = a1
socket.Attachment1 = a2
a1.CFrame = joint.C0
a2.CFrame = joint.C1
socket.LimitsEnabled = true
socket.TwistLimitsEnabled = true
joint:Destroy()
end
end
end)


Watch video How to create Ragdoll? - Roblox Studio Tutorial #9 online without registration, duration hours minute second in high quality. This video was added by user fil1pex 28 August 2024, don't forget to share it with your friends and acquaintances, it has been viewed on our site 32 once and liked it 1 people.