Advertisement
AlexYaWon

Roblox Ctrl+Click Tp Script

Aug 9th, 2022
7,627
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.32 KB | None | 0 0
  1. -- CTRL+CLICK TP
  2. local Plr = game:GetService("Players").LocalPlayer
  3.  
  4. local Mouse = Plr:GetMouse()
  5.  
  6.  
  7.  
  8. Mouse.Button1Down:connect(function()
  9.  
  10. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  11.  
  12. if not Mouse.Target then return end
  13.  
  14. Plr.Character:MoveTo(Mouse.Hit.p)
  15.  
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement