of     1   

NICCO890
#183462727Friday, February 12, 2016 11:38 PM GMT

I was trying welding a part to my arm and every time I try to weld the part, I get stuck. script: script.Parent.Touched:connect(function(hit) humanoid = hit.Parent:FindFirstChild("Humanoid") if humanoid then part = script.Parent RArm = humanoid.Parent:findFirstChild("Right Arm") part.CFrame = RArm.CFrame * CFrame.new(0,-1,0) weld = Instance.new("Weld") weld.Part0 = RArm weld.C0 = RArm.CFrame:inverse() weld.Part1 = part weld.C1 = part.CFrame:inverse() weld.Parent = part part.Anchored = false end end) Nothing in the output. :| Help. Momma said I could be anything.
badguy1233
#183463398Friday, February 12, 2016 11:45 PM GMT

Is the part you're trying to weld to you anchored?
NICCO890
#183463568Friday, February 12, 2016 11:47 PM GMT

I figured it out, I felt stupid when i realized I just had to remove the studs. Lol Momma said I could be anything.

    of     1