How do I get a Motor6D to attach to the player's right arm through a script?


How do I get a Motor6D to attach to the player.Characters right arm through a script as shown in the image.

Got it working!

game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local handle = script.Handle
script.Handle.Parent = char:FindFirstChild(“Right Arm”)
wait(0.05)
char:FindFirstChild(“Right Arm”):FindFirstChild(“Handle”).Part0 = char:FindFirstChild(“Right Arm”)
end)
end)

if anyone is wondering this is the script I used.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.