All pastes #716596 Raw Edit

Welder Script

public lua v1 · immutable
#716596 ·published 2007-09-26 23:37 UTC
rendered paste body
function glue(x, y) 	weld = Instance.new("Weld") 	weld.Part0 = x 	weld.Part1 = y 	local HitPos = x.Position 	local CJ = CFrame.new(HitPos) 	local C0 = x.CFrame:inverse() *CJ 	local C1 = y.CFrame:inverse() * CJ 	weld.C0 = C0 	weld.C1 = C1 	weld.Parent = x end local core = script.Parentlocal parts = script.Parent.Parent:FindFirstChild(core.Name):GetChildren()for i=1,#parts do	glue(parts[i], core)endprint("Welding done")script.Parent = nil