I know CFraming Is more Efficient but I would to know how to use the MoveTo Method I found this on the wiki but I dont really understand how to use it! I would consider using CFraming But I dont know how I would move the postition of a part to a players torso! Please Help! :D (Note: I dont want a request I Just would Like to know how to use it! :D)
:MoveTo()
moved the part that is operated on to the coordinates or position. For example, using game.Workspace.Part:MoveTo(0,0,0)
would move the Part in the workspace to the coordinates (0,0,0).
It is often used to move Players to certain positions by using :MoveTo on their Torsos, although CFraming is more efficient.
Would this work @SlickPwner I have a script that clones the "ClickDetector" and the "Script" the part forms but its not at the torso Position....
Torso = script.Parent script.Parent.ClickDetector.MouseClick:connect(function(char) local cloned3 = game.ServerStorage.Part:Clone() cloned3.Parent = script.Parent.Parent.Torso.Parent script.Parent.Anchored = true script.Parent.Part:MoveTo(Torso) wait(3) cloned3:Remove() script.Parent.Anchored = false end)