Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- How to use; click 'b' on your keyboard and you will
- -- teleport to where ever your mouse is.
- -- Not owned by me, Credits to the original owner!
- -- Xfer was here (T.V.K)
- plr = game.Players.LocalPlayer
- hum = plr.Character.HumanoidRootPart
- mouse = plr:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "b" then
- if mouse.Target then
- hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement