How can I put a Model into the Characters Right Arm through script?

How can I put a Model into the Characters Right Arm through script? I’ve tried tons of things but couldn’t get them to work. Help would be great.

1 Like

You can try to get the model, the player, the player character, and the player “Right Arm” in a script whenever the player got added into the game, then clone the model to the “Right Arm”.

Can you show me how you would do this? I know I’d do something wrong lol

Players.PlayerAdded:Connect(function(plr)
      plr.CharacterAdded:Connect(function(char)
             local RightArm = char:WaitForChild("RightArm", 10)
             local Clone = YourModel:Clone()
             Clone.Parent = RightArm
             --[[note that this will only work for R6 characters, you need to go into
             studio and check what body parts are in a R15 model and add a check for those!]]
      end)
end)