of     1   

George_Becker
#183486952Saturday, February 13, 2016 5:45 AM GMT

I have the following "code" that creates and welds the "fake arms" to the character... local RightArm = game.ReplicatedStorage.rarm:Clone() RightArm.Name = "Right Arm" RightArm.Transparency = 0 RightArm.CanCollide = false RightArm.TopSurface = 0 RightArm.BottomSurface = 0 local w = Instance.new("Weld") w.Part0 = RightArm w.Part1 = Player.Character:FindFirstChild("Right Arm") w.C0 = CFrame.Angles(180, -0, 0) w.C1 = CFrame.Angles(99.258, 15.072, 50) w.Parent = RightArm RightArm.Parent = Arms local LeftArm = game.ReplicatedStorage.larm:Clone() LeftArm.Name = "Left Arm" LeftArm.Transparency = 0 LeftArm.CanCollide = false LeftArm.TopSurface = 0 LeftArm.BottomSurface = 0 local w = Instance.new("Weld") w.Part0 = LeftArm w.Part1 = Player.Character:FindFirstChild("Left Arm") w.C0 = CFrame.new() w.C1 = CFrame.new() w.Parent = LeftArm LeftArm.Parent = Arms For some reason, the left arm works but the right arm always get "positioned/rotated" a weird way. I am stuck, any help is appreciated. DEMO PLACE (SEE THE ARM BUG IN ACTION): http://www.roblox.com/games/362165469/Global-Offensive-Reborn
George_Becker
#183488244Saturday, February 13, 2016 6:16 AM GMT

Another.. bump
Hedr0n
#183488358Saturday, February 13, 2016 6:19 AM GMT

Just take it the local transparency modifier in the camera script
128Gigabytes
#183488366Saturday, February 13, 2016 6:19 AM GMT

Because you are setting the C0 and C1 of the right arm to some weird CFrame value.
George_Becker
#183488577Saturday, February 13, 2016 6:25 AM GMT

local RightArm = Player.Character:FindFirstChild("Right Arm"):clone() RightArm.Name = "Right Arm" RightArm.Transparency = 0 RightArm.CanCollide = false RightArm.TopSurface = 0 RightArm.BottomSurface = 0 local w = Instance.new("Weld") w.Part0 = RightArm w.Part1 = Player.Character:FindFirstChild("Right Arm") w.C0 = CFrame.new() w.C1 = CFrame.new() w.Parent = RightArm RightArm.Parent = Arms local LeftArm = Player.Character:FindFirstChild("Left Arm"):clone() LeftArm.Name = "Left Arm" LeftArm.Transparency = 0 LeftArm.CanCollide = false LeftArm.TopSurface = 0 LeftArm.BottomSurface = 0 local w = Instance.new("Weld") w.Part0 = LeftArm w.Part1 = Player.Character:FindFirstChild("Left Arm") w.C0 = CFrame.new() w.C1 = CFrame.new() w.Parent = LeftArm LeftArm.Parent = Arms Still doesn't work
George_Becker
#183488612Saturday, February 13, 2016 6:26 AM GMT

It positions it all weirdly
George_Becker
#183488653Saturday, February 13, 2016 6:28 AM GMT

Sorry, that was wrong post.. I am not sure what to change it to
128Gigabytes
#183488721Saturday, February 13, 2016 6:30 AM GMT

Just don't position the C0 and C1 it will set itself to whatever position is exactly on top of the part.
George_Becker
#183488770Saturday, February 13, 2016 6:31 AM GMT

local w = Instance.new("Weld") w.Part0 = RightArm w.Part1 = Player.Character:FindFirstChild("Right Arm") w.Parent = RightArm RightArm.Parent = Arms This messes it all up, view the place if you want to see what I mean..
George_Becker
#183489262Saturday, February 13, 2016 6:52 AM GMT

Bump
George_Becker
#183489546Saturday, February 13, 2016 7:04 AM GMT

Actually, it's for both.. Both are messed up. Look: http://www.roblox.com/games/362522996/Foot-Planting
George_Becker
#183489662Saturday, February 13, 2016 7:09 AM GMT

Nevermind, figured out a way I think
George_Becker
#183489800Saturday, February 13, 2016 7:14 AM GMT

Yep, it works!

    of     1