10-17-2010, 02:15 PM
Put this script in a tool, then click somewhere to teleport there:
Code:
tool = script.Parent
player = tool.Parent.Parent
if player:isA("Player") then
body = player.Character.Body
link(script.Parent.MouseDown, function(button, point)
body.Position = point
end)
end