Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

I can't play as the character I made?

Asked by 6 years ago

local rp = game.ReplicatedStorage local LeftArm = rp:WaitForChild('LeftArm') local LeftLeg = rp:WaitForChild('LeftLeg') local RightArm =rp:WaitForChild('RightArm') local RightLeg =rp:WaitForChild('RightLeg') local Torso2 =rp:WaitForChild('Torso2')

game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) char:WaitForChild('Torso').Transparency = 1 char:WaitForChild('Left Leg').Transparency = 1 char:WaitForChild('Left Arm').Transparency = 1 char:WaitForChild('Right Leg').Transparency = 1 char:WaitForChild('Right Arm').Transparency = 1

    local ClonedLA = LeftArm:Clone()
    ClonedLA.Parent = char

    ClonedLA.Main.CFrame = char.WaitForChild('Left Arm'). CFrame 
    local Weld = Instance.new('ManualWeld')
    Weld.Part0 = ClonedLA.Main
    Weld.Part1 = char.WaitForChild('Left Arm')
    Weld.C0 = ClonedLA.Main.CFrame:inverse() * char:WaitForChild('Left Arm'). CFrame
    Weld.Parent = char:WaitForChild('LeftArm')
end)

end)

when I spawn it wont show the left arm

0
Did you try to put the character model in starter player? iRexBot 147 — 6y

Answer this question