Change humanoid body part locations

Whenever I try and change a humanoid’s head or torso location, it always teleports back to its original location after running the game. Someone told me to modify the properties of the Motor6d instances, but that didn’t appear to work for me. Does anyone have a working solution for this?

Try this script :smiley:

local humanoid = character.Humanoid
local head = character.Head
local torso = character.Torso


humanoid.AutoRotate = false


local headMotor = head.neck
headMotor.C0 = CFrame.new(0, 2, 0)


head.CFrame = CFrame.new(0, 2, 0)

humanoid.AutoRotate = true

Should I change character to the parent of the humanoid’s name?

No, you shouldn’t change the character to the parent of the humanoid’s name. The character is typically a parent of the humanoid instance itself.

The head doesn’t seem to have a neck property. Is it something I should add?

Sorry, here is an updated version!

local character = game.Players.LocalPlayer.Character -- Replace with the appropriate way to get the character reference

local humanoid = character.Humanoid
local head = character.Head
local torso = character.Torso

humanoid.AutoRotate = false

local headMotor = head.neck
headMotor.C0 = CFrame.new(0, 2, 0)

head.CFrame = CFrame.new(0, 2, 0)

humanoid.AutoRotate = true

I forgot to mention that the humanoid I’m modifying belongs to an NPC, and not a player. Apologies for not mentioning that beforehand

Make sure to replace "NPCName" with the actual name of your NPC in the game. (not sure if this gonna work)

-- Replace "NPCName" with the name of your NPC
local npc = game.Workspace:FindFirstChild("NPCName")
if npc then
    local humanoid = npc:FindFirstChildOfClass("Humanoid")
    local head = npc:FindFirstChild("Head")
    local torso = npc:FindFirstChild("Torso")

    if humanoid and head and torso then
        humanoid.AutoRotate = false

        local headMotor = head:FindFirstChild("Neck")
        if headMotor then
            headMotor.C0 = CFrame.new(0, 2, 0)
        end

        head.CFrame = CFrame.new(0, 2, 0)

        humanoid.AutoRotate = true
    else
        warn("Required parts not found in NPC's character model.")
    end
else
    warn("NPC not found.")
end

It worked, thank you very much :smiley:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.