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

How can I place the cloned arm into the workspace?

Asked by
PhaZeRO 30
9 years ago

Im a beginner scripter so i might not understand everything. i want to make the fake arm is visible when fully zoomed/firstperson. this is in a script btw should i put it in a local script?

01game.Players.PlayerAdded:connect(function(player)
02    player.CharacterAdded:connect(function(character)
03 
04        local rightArm = character:WaitForChild("Right Arm")
05        local rightArmClone = rightArm:Clone()
06        local model = Instance.new("Model", character)
07 
08        rightArmClone.Parent = model
09        rightArmClone.FormFactor = "Custom"
10        rightArmClone.Size = Vector3.new(0.99, 1.99, 0.99)
11 
12        local weld = Instance.new("Weld")
13        weld.Parent = rightArm
14        weld.Part0 = rightArm
15        weld.Part1 = rightArmClone
16    end)
17end)
0
This should probably be in a server script. Are there any other questions? What is currently happening? If you want to move the cloned arm into workspace , set its parent (line`8`) to `workspace` instead of `model`. XAXA 1569 — 9y

1 answer

Log in to vote
0
Answered by
sad_eyez 162
9 years ago

do this:

1rightArmClone.Parent = game.Workspace
0
No, not really since he already parented the model to the character he doesn't have to parent the cloned arm to workspace since he parented it to the model. KingLoneCat 2642 — 9y
Ad

Answer this question