If so, what lua is doing is actually accessing the MoveTo method (the same one you’re firing on the character!) – It is possible to access functions with . instead of : (but this causes adverse effects and you shouldn’t do it.
Try altering your code to this: game.Players.LocalPlayer.Character:MoveTo(game.Workspace.Example:FindFirstChild("MoveTo").Position)
Placing the object in ["brackets and quotes"] tells it to look for an object with that name. (Edit: This is false.)
It also allows you to get objects that have spaces or periods in their name.