Weld changing position

I’m trying to making weld using script more the weld is changing my character position after I create him. Anyone can help?

My script:

local TS = game:GetService('TweenService')
local Stand = script.Parent.Stand:Clone()
local Weld = Instance.new('Weld', plr.Character)
Stand.Parent = plr.Character
Weld.Part0 = plr.Character.HumanoidRootPart
Weld.Part1 = Stand.HumanoidRootPart
Weld.C0 = CFrame.new(0, -1, -2)

Anyone can help me please, I need help

Try to use plr.Character:PivotTo(Stand.CFrame) before you create the weld.

This function, thanks so much!

1 Like