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 |