Advertisement
Guest User

GASGAHSX

a guest
Jul 20th, 2018
1,417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. local Plr = game:GetService("Players").LocalPlayer
  2. local Mouse = Plr:GetMouse()
  3. enabled = true
  4.  
  5. Mouse.Button1Down:connect(function()
  6. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  7. if not Mouse.Target then return end
  8. if not enabled then return end
  9. Plr.Character.HumanoidRootPart.CFrame = Mouse.Hit + Vector3.new(0,7,0)
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement