MoveTo (Method)/humanoid

From Legacy Roblox Wiki
Revision as of 19:23, 18 September 2011 by >SoulStealer9875 (not sure but correct me if i'm wrong)
Jump to navigationJump to search
MoveTo( Vector3 location, Part Instance )
Returns nil
Description: Causes the character of the humanoid to walk to the location.
Member of: Humanoid


Example
This LocalScript will make the LocalPlayer's Character walk to a Part.
local part = game.Workspace.Part
game.Players.LocalPlayer.Character.Humanoid:MoveTo(part.Position, part)