Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

I made a ralldoll death but how do I make it fly when the player die?

Asked by 5 years ago

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

01game.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 logic0, logic21 = Instance.new("Attachment"), Instance.new("Attachment")
08                    logic0.CFrame = v.C0
09                    logic21.CFrame = v.C1
10                    logic0.Parent = v.Part0
11                    logic21.Parent = v.Part1
12 
13 
14                    local logic1 = Instance.new("BallSocketConstraint")
15 
View all 26 lines...
0
you did not make that yourself it's from a youtube video EXPOSED maxpax2009 340 — 5y

1 answer

Log in to vote
1
Answered by 5 years ago

I would use a VectorForce like this

01game.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 logic0, logic21 = Instance.new("Attachment"), Instance.new("Attachment")
09                    logic0.CFrame = v.C0
10                    logic21.CFrame = v.C1
11                    logic0.Parent = v.Part0
12                    logic21.Parent = v.Part1
13 
14 
15                    local logic1 = Instance.new("BallSocketConstraint")
View all 35 lines...
0
thank you it makes it a bit more realistic Eric_pokemon 133 — 5y
Ad

Answer this question