Hello! I was wondering how to make a Humanoid follow a player's torso but I have found many problems with trying. I got the Humanoid to follow a Part, but could not with a player's torso. This is what I've got so far
char = script.Parent torso = game.Players.LocalPlayer.Character.Torso.Position wait(5) while true do torso = game.Players.LocalPlayer.Character.Torso.Position char.Humanoid:MoveTo(torso) wait() end