Teleport Tool
#1
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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)