How can I place the cloned arm into the workspace?
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?
01 | game.Players.PlayerAdded:connect( function (player) |
02 | player.CharacterAdded:connect( function (character) |
04 | local rightArm = character:WaitForChild( "Right Arm" ) |
05 | local rightArmClone = rightArm:Clone() |
06 | local model = Instance.new( "Model" , character) |
08 | rightArmClone.Parent = model |
09 | rightArmClone.FormFactor = "Custom" |
10 | rightArmClone.Size = Vector 3. new( 0.99 , 1.99 , 0.99 ) |
12 | local weld = Instance.new( "Weld" ) |
13 | weld.Parent = rightArm |
15 | weld.Part 1 = rightArmClone |