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

How would I locally remove the neck without the character dying?

Asked by 4 years ago

I've tried doing setstate, but the Humanoid still dies.

game:GetService("Players").LocalPlayer.Character.Humanoid:SetStateEnabled("Dead", false)
wait()
game:GetService("Players").LocalPlayer.Character.Torso.Neck:Destroy()
1
This is not possible the neck weld is required to keep the player alive (this is why break joints also kills the player). If you wish to do something with the player head then I would make a fake one. User#5423 17 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

The neck is one of the main objects of the player. Removing it would kill the player. Your best bet is to simply clone the head as a fake, and then use that as your thing.

Ad

Answer this question