Advertisement
Xfer1111

Roblox Teleport

Jun 22nd, 2020
583
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. -- How to use; click 'b' on your keyboard and you will
  2. -- teleport to where ever your mouse is.
  3. -- Not owned by me, Credits to the original owner!
  4. -- Xfer was here (T.V.K)
  5.  
  6. plr = game.Players.LocalPlayer
  7.  
  8. hum = plr.Character.HumanoidRootPart
  9.  
  10. mouse = plr:GetMouse()
  11.  
  12.  
  13.  
  14. mouse.KeyDown:connect(function(key)
  15.  
  16. if key == "b" then
  17.  
  18. if mouse.Target then
  19.  
  20. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  21.  
  22. end
  23.  
  24. end
  25. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement