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