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)