Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do i weld?

Asked by 10 years ago

I have tried this

function Weld()
Part1.TopSurface = weld
Part2.TopSurface = weld
print("Welded!")

Not working please help!

1 answer

Log in to vote
0
Answered by 10 years ago

Hmm, try this;

function Weld(p0,p1,par)
weld=Instance.new("Weld",par)
weld.Part0=p0
weld.Part=p1
end

Weld(First part here,First part here,Parent here)
Ad

Answer this question