01 | LFake = LArm:clone() |
02 | LFake.Parent = Tool |
03 | RFake = RArm:clone() |
04 | RFake.Parent = Tool |
05 | LFake.BrickColor = LArm.BrickColor |
06 | RFake.BrickColor = RArm.BrickColor |
07 | Weld 1 = Instance.new( 'Weld' , RFake) |
08 | Weld 1. Part 0 = RFake |
09 | Weld 1. Part 1 = RArm |
10 | Weld 2 = Instance.new( 'Weld' , LFake) |
11 | Weld 2. Part 0 = LFake |
12 | Weld 2. Part 1 = 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...
Try this, if it doesn't help I am dearly sorry;
01 | LArm = script.Parent:WaitForChild( "Left Arm" ) --I think you forgot this |
02 | RArm = script.Parent:WaitForChild( "Right Arm" ) --I think you forgot this too |
03 | LFake = LArm:clone() |
04 | LFake.Parent = Tool --What does this connect to? |
05 | RFake = RArm:clone() |
06 | RFake.Parent = Tool --What does this connect to? |
07 | LFake.BrickColor = LArm.BrickColor |
08 | RFake.BrickColor = RArm.BrickColor |
09 | Weld 1 = Instance.new( 'Weld' , RFake) |
10 | Weld 1. Part 0 = RFake |
11 | Weld 1. Part 1 = RArm |
12 | Weld 2 = Instance.new( 'Weld' , LFake) |
13 | Weld 2. Part 0 = LFake |
14 | Weld 2. Part 1 = 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. ;)
01 | Tool = script.Parent --If in a Tool |
02 | LArm = script.Parent.Parent:WaitForChild( "Left Arm" ) --Wait for Left Arm |
03 | RArm = script.Parent.Parent:WaitForChild( "Right Arm" ) --Wait for Right Arm |
04 | LFake = LArm:clone() |
05 | LFake.Parent = Tool |
06 | RFake = RArm:clone() |
07 | RFake.Parent = Tool |
08 | LFake.BrickColor = LArm.BrickColor |
09 | RFake.BrickColor = RArm.BrickColor |
10 | Weld 1 = Instance.new( 'Weld' , RFake) |
11 | Weld 1. Part 0 = RFake |
12 | Weld 1. Part 1 = RArm |
13 | Weld 2 = Instance.new( 'Weld' , LFake) |
14 | Weld 2. Part 0 = LFake |
15 | Weld 2. Part 1 = LArm |
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