jonesj627
|
  |
| Joined: 06 Oct 2010 |
| Total Posts: 1496 |
|
|
| 09 Nov 2013 07:04 PM |
This script only makes the arm and welds it to the player's character, but the arms can not move, It used to work, but not anymore
--LEFT ARM leftarm = Instance.new("Part"); leftarm.Parent = game.Workspace.CurrentCamera; leftarm.Material = "Plastic"; leftarm.BrickColor = BrickColor.new("Light orange"); leftarm.Shape = "Block"; leftarm.Anchored = false leftarm.FormFactor = "Symmetric"; leftarm.Size = Vector3.new(1,2,1); leftarm.BackSurface = "Smooth"; leftarm.BottomSurface = "Inlet"; leftarm.FrontSurface = "Smooth"; leftarm.LeftSurface = "Smooth"; leftarm.RightSurface = "Smooth"; leftarm.TopSurface = "Studs"; leftarm.Name = "fleftarm"; print("Left Arm Created") --------------------------------------------------------------------------------- --------------------------------------------------------------------------------- leftarm.CFrame = script.Parent.Parent.Character["Left Arm"].CFrame
local function weldBetween(a, b) local weld = Instance.new("Weld"); weld.Part0 = a; weld.Part1 = b; weld.C0 = CFrame.new(); weld.C1 = b.CFrame:inverse() * a.CFrame; weld.Parent = a; return weld; end
leftarm.CFrame = script.Parent.Parent.Character["Left Arm"].CFrame; leftarm:BreakJoints() leftarm:MakeJoints() weldBetween(game.Workspace.CurrentCamera.fleftarm,script.Parent.Parent.Character["Left Arm"]);
|
|
|
| Report Abuse |
|
jonesj627
|
  |
| Joined: 06 Oct 2010 |
| Total Posts: 1496 |
|
| |