of     1   

Pez1999
#141187474Tuesday, July 22, 2014 7:21 PM GMT

local rclaw = game.Lighting:FindFirstChild("RightClaw"):clone() local lclaw = game.Lighting:FindFirstChild("LeftClaw"):clone() rclaw.Anchored = true lclaw.Anchored = true rclaw.Parent = char lclaw.Parent = char rclaw.CFrame = CFrame.new(char:findFirstChild("Right Arm").Position + Vector3.new(0,-1.43,0)) lclaw.CFrame = CFrame.new(char:findFirstChild("Left Arm").Position + Vector3.new(0,-1.43,0)) local motorR = Instance.new("ManualWeld", rclaw) local motorL = Instance.new("ManualWeld", lclaw) motorR.Part0 = char:findFirstChild("Right Arm") motorR.Part1 = rclaw motorL.Part0 = char:findFirstChild("Left Arm") motorL.Part1 = lclaw The rclaw and lclaw are stuck inside the arms. The same position as the arms, but not 1.43 studs below it. Help
Pez1999
#141190523Tuesday, July 22, 2014 7:52 PM GMT

Any ideas? :/
triode
#141190628Tuesday, July 22, 2014 7:53 PM GMT

Try CFraming them into the position, Vector3's are eh
Pez1999
#141191246Tuesday, July 22, 2014 7:59 PM GMT

I've tried that too. Hasn't worked :/
Pez1999
#141214303Tuesday, July 22, 2014 11:44 PM GMT

BUMP

    of     1