yankeejr
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 4906 |
|
|
| 08 Feb 2014 02:20 AM |
Attach this to a character, and replace the old arms???
http://www.roblox.com/Camera-item?id=142530158 |
|
|
| Report Abuse |
|
|
yankeejr
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 4906 |
|
| |
|
|
| 08 Feb 2014 02:30 AM |
Feeling generous, so... put this script inside the tool containing the model
local user local tool=script.Parent local CameraArm1=tool:findFirstChild("Left Arm") --or whatever local CameraArm2=tool:findFirstChild("Right Arm") --same as the previous line
tool.Equipped:connect(function() user=tool.Parent
local arm1=user:findFirstChild("Left Arm") local arm2=user:findFirstChild("Right Arm") if (arm1~=nil) and (arm2~=nil) and (user:findFirstChild("Humanoid")~=nil) then arm1.Transparency=1 arm2.Transparency=1
local weld1=Instance.new("Weld") weld1.Parent=arm1 weld1.Part0=arm1 weld1.Part1=CameraArm1 weld1.C0=Vector3.new(0,0,0)
local weld2=Instance.new("Weld") weld2.Parent=arm2 weld2.Part0=arm2 weld2.Part1=CameraArm2 weld2.C0=Vector3.new(0,0,0) end end) |
|
|
| Report Abuse |
|
|
yankeejr
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 4906 |
|
|
| 08 Feb 2014 02:33 AM |
| do i put the model in starterpack? |
|
|
| Report Abuse |
|
|