so I made this basic ralldoll engine that if you die you turn into a ralldoll but i wan the ralldoll to fling when the player dies heres the script
01 | game.Players.PlayerAdded:Connect( function (p) |
02 | p.CharacterAdded:Connect( function (c) |
03 | c.Humanoid.BreakJointsOnDeath = false |
04 | c.Humanoid.Died:Connect( function () |
05 | for _, v in pairs (c:GetDescendants()) do |
06 | if v:IsA( "Motor6D" ) then |
07 | local logic 0 , logic 21 = Instance.new( "Attachment" ), Instance.new( "Attachment" ) |
08 | logic 0. CFrame = v.C 0 |
09 | logic 21. CFrame = v.C 1 |
10 | logic 0. Parent = v.Part 0 |
11 | logic 21. Parent = v.Part 1 |
12 |
13 |
14 | local logic 1 = Instance.new( "BallSocketConstraint" ) |
15 |
I would use a VectorForce like this
01 | game.Players.PlayerAdded:Connect( function (p) |
02 | p.CharacterAdded:Connect( function (c) |
03 | c.Humanoid.BreakJointsOnDeath = false |
04 |
05 | c.Humanoid.Died:Connect( function () |
06 | for _, v in pairs (c:GetDescendants()) do |
07 | if v:IsA( "Motor6D" ) then |
08 | local logic 0 , logic 21 = Instance.new( "Attachment" ), Instance.new( "Attachment" ) |
09 | logic 0. CFrame = v.C 0 |
10 | logic 21. CFrame = v.C 1 |
11 | logic 0. Parent = v.Part 0 |
12 | logic 21. Parent = v.Part 1 |
13 |
14 |
15 | local logic 1 = Instance.new( "BallSocketConstraint" ) |