Why is Motor6D disappearing?

What do I want to achieve?

  • I need to create a Motor6D ant then use it for animations.

What is the issue?
Motor6D just disappears.
(But when i use breakpoints it stays)

game.Players.PlayerAdded:Connect(function(plr)			
	local char = plr.CharacterAdded:Wait()
	local Torso = char:FindFirstChild("Torso") or char:FindFirstChild("LowerTorso")
	--print(Torso.Name)
	local M6D = Instance.new("Motor6D",Torso)
	M6D.Enabled = true
	M6D.Name = "Grip"
end)

P. S.
The code is in the server script

1 Like

Did you ever figure this out? I’m having the same issue

are you changing the position or CFrame of either parts in a way that would break the motor6d?