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

How to weld multiple parts as a tool?

Asked by 6 years ago
Edited 6 years ago

local prev local parts = script.Parent:getChildren() for i = 1,#parts do if (parts[i].className == "Part") local Weld = Instance.new("Weld") weld.part0 = prev weld.Part1 = parets[i] weld.Parent = prev end prev = parts[i] )end end

I'm able to weld a part to my hands it horizontal but, not vertical how do I weld multiple parts and fix this?

Answer this question