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

Fake Arms Problem!!!?

Asked by
KAAK82 16
9 years ago
LFake = LArm:clone()
LFake.Parent = Tool
RFake = RArm:clone()
RFake.Parent = Tool
LFake.BrickColor = LArm.BrickColor
RFake.BrickColor = RArm.BrickColor
Weld1 = Instance.new('Weld', RFake)
Weld1.Part0 = RFake
Weld1.Part1 = RArm
Weld2 = Instance.new('Weld', LFake)
Weld2.Part0 = LFake
Weld2.Part1 = LArm

this is the Chunk am orried about... it makes more than 3 Arms (of each side), anyone help plz? but since I made a seperate function for HeadtoArms, it doesnt add FakeArms...

2 answers

Log in to vote
0
Answered by 9 years ago

Try this, if it doesn't help I am dearly sorry;

LArm=script.Parent:WaitForChild("Left Arm") --I think you forgot this
RArm=script.Parent:WaitForChild("Right Arm") --I think you forgot this too
LFake = LArm:clone()
LFake.Parent = Tool --What does this connect to?
RFake = RArm:clone()
RFake.Parent = Tool --What does this connect to?
LFake.BrickColor = LArm.BrickColor
RFake.BrickColor = RArm.BrickColor
Weld1 = Instance.new('Weld', RFake)
Weld1.Part0 = RFake
Weld1.Part1 = RArm
Weld2 = Instance.new('Weld', LFake)
Weld2.Part0 = LFake
Weld2.Part1 = LArm

If it still doesn't work, just Private Message me on Roblox (On TheeDeathCaster) and I'll see what I can do. ;)

-- EDITED --

If it still doesn't work, just Private message me. ;)

Tool=script.Parent --If in a Tool
LArm=script.Parent.Parent:WaitForChild("Left Arm") --Wait for Left Arm
RArm=script.Parent.Parent:WaitForChild("Right Arm") --Wait for Right Arm
LFake = LArm:clone()
LFake.Parent = Tool
RFake = RArm:clone()
RFake.Parent = Tool
LFake.BrickColor = LArm.BrickColor
RFake.BrickColor = RArm.BrickColor
Weld1 = Instance.new('Weld', RFake)
Weld1.Part0 = RFake
Weld1.Part1 = RArm
Weld2 = Instance.new('Weld', LFake)
Weld2.Part0 = LFake
Weld2.Part1 = LArm
0
thnx for trying... but nothing orked :( KAAK82 16 — 9y
0
I'm so sorry bro. ;( TheeDeathCaster 2368 — 9y
Ad
Log in to vote
-2
Answered by 9 years ago

Here's a link to my fake arms script you put them into the weapon or whatever it is you need them for. Just ungroup, then cut and paste into it.

http://www.roblox.com/Fake-Arms-item?id=159676175

0
lol made it today? anyho, I kindd offf made mine ork, but sometimes it doesn't listen... I'll try it on my other Test Gun later... KAAK82 16 — 9y
0
Ok Opptitronica 0 — 9y

Answer this question