|
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 |
|
|
Hedr0nJoin Date: 2016-01-05 Post Count: 1524 |
Just take it the local transparency modifier in the camera script |
|
|
Because you are setting the C0 and C1 of the right arm to some weird CFrame value. |
|
|
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 |
|
|
It positions it all weirdly |
|
|
Sorry, that was wrong post..
I am not sure what to change it to |
|
|
Just don't position the C0 and C1 it will set itself to whatever position is exactly on top of the part. |
|
|
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.. |
|
|
|
Actually, it's for both..
Both are messed up.
Look:
http://www.roblox.com/games/362522996/Foot-Planting
|
|
|
Nevermind, figured out a way I think |
|
|