Weird error when using an instance weld

i wanna make a weld between a bow and arrow with an instance in a script but i get this weird error when im trying to create the welds properties

Script:

local Weld = Instance.new(“WeldConstraint”)
Weld.Parent = Handle
Weld.part0 = Handle
Weld.Part1 = Arrow
Error:

part0 is not a valid member of WeldConstraint “Workspace.itzVasi.Bow.Handle.WeldConstraint”

You did a little misspell, happens to everybody!

Change
Weld.part0 = Handle
to
Weld.Part0 = Handle

1 Like

Wow! diddnt even spotted the difference at first thank you so much!!