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

My weld script for a tool doesn't work?

Asked by
lucas4114 607 Moderation Voter
9 years ago

So... I'm making a tool and this doesn't work to weld parts:

script.Parent.Parent.StringSpawn.Position =  script.Parent.Parent.StringSpawn.Position + Vector3.new(0,3.2,0)

Weld1 = Instance.new("Weld")
Weld1.Parent = script
Weld1.Part0 = script.Parent
Weld1.Part1 = script.Parent.Parent.StringSpawn

Nothing in output, and what it does is, it works to Weld the parts from falling apart, but the part's position is wrong, they just go inside each other..... :c

0
You're forgetting about giving the position to the weld! Such as Weld1.C0 = CFrame.new(...) and on. alphawolvess 1784 — 9y
0
Oooh.... Ok... Ty lucas4114 607 — 9y

Answer this question