Can someone give me someone give me a brief explanation of welding, I understand it holds together non-anchored parts, I just don't understand the things like part0
FirstPart = Workspace.Partname1 -- The location of the first part SecondPart = Workspace.Partname2 -- The location of the second part WeldName = Instance.new("Weld") -- Create new weld with name "WeldName" WeldName.Part0 = FirstPart -- Selecting the first part to be welded WeldName.Part1 = SecondPart -- Selecting the second part to be welded WeldName.C0 = CFrame.new(0,0,0)*CFrame.Angles(0,0,0) -- Selecting where the parts will be welded at WeldName.Parent = FirstPart -- Where the actual weld will be stored