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

I tried to create an R15 fake arm script, it doesn't work, does anyone know why?

Asked by 6 years ago

local player = game.Players.LocalPlayer local C = player.Character

RU = C["RightUpperArm"] RL = C["RightLowerArm"] RH = C["RightHand"]

LU = C["LeftUpperArm"] LL = C["LeftLowerArm"] LH = C["LeftHand"]

CRU = RU:Clone() CRL = RL:Clone() CRH = RH:Clone()

CLU = LU:Clone() CLL = LL:Clone() CLH = LH:Clone()

RU.Transparency = 1 RL.Transparency = 1 RH.Transparency = 1

LU.Transparency = 1 LL.Transparency = 1 LH.Transparency = 1

local W1 = Instance.new("Weld", CRU) W1.Part0 = CRU W1.Part1 = RU

local W2 = Instance.new("Weld", CRL) W2.Part0 = CRL W2.Part1 = RL

local W3 = Instance.new("Weld", RH) W3.Part0 = CRH W3.Part1= RH

local W4 = Instance.new("Weld", CLU) W4.Part0 = CLU W4.Part1 = LU

local W5 = Instance.new("Weld", CLL) W5.Part0 = CLL W5.Part1 = LL

local W6 = Instance.new("Weld", CLH) W6.Part0 = CLH W6.Part1 = LH


Answer this question