hey i was making a game and my welding script welded a part to a player and then the part welded its self to another player here's the script please help: script.Parent.Touched:connect(function(hit) humanoid = hit.Parent:findFirstChild("Humanoid") if humanoid then torso = hit.Parent.Torso script.Parent.CFrame = torso.CFrame * CFrame.new(0,0,0.90) weld = Instance.new("Weld") weld.Part0 = torso weld.C0 = torso.CFrame:inverse() weld.Part1 = script.Parent weld.C1 = script.Parent.CFrame:inverse() weld.Parent = script.Parent script.Parent.Anchored = false end end)