Advertisement
do0mish

Click TP and CTRL Delete

Mar 10th, 2020
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Join 7Scripts to get more scripts!
  2. Invite: https://discord.gg/JpjDYEd
  3.  
  4. CTRL DELETE -- vvv
  5.  
  6. --Hold CLTR and click to delete parts (you need to rejoin if you delete something wrong!!
  7. local Plr = game:GetService("Players").LocalPlayer
  8. local Mouse = Plr:GetMouse()
  9.  
  10. Mouse.Button1Down:connect(function()
  11. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  12. if not Mouse.Target then return end
  13. Mouse.Target:Destroy()
  14. end)
  15.  
  16.  
  17.  
  18. Click TP (Press Q) --- vvv
  19.  
  20. plr = game.Players.LocalPlayer
  21.  
  22. hum = plr.Character.HumanoidRootPart
  23.  
  24. mouse = plr:GetMouse()
  25.  
  26.  
  27.  
  28. mouse.KeyDown:connect(function(key)
  29.  
  30. if key == "q" then
  31.  
  32. if mouse.Target then
  33.  
  34. hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
  35.  
  36. end
  37.  
  38. end
  39. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement