1x11337

Ctrl Clicks

Nov 27th, 2018
538
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. NEW SCRIPT!!!
  2.  
  3. ------------------------
  4. Ctrl + Click BreakJoints
  5. ------------------------
  6.  
  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:BreakJoints()
  14. end)
  15.  
  16. ------------------------
  17. Ctrl + Click TP Others FE
  18. ------------------------
  19.  
  20. player = game.Players.PLAYERNAMEHERE!!!.Character
  21. mouse = game.Players.LocalPlayer:GetMouse()
  22.  
  23. function Click()
  24. player.HumanoidRootPart.CFrame = mouse.Hit
  25. end
  26.  
  27. mouse.Button1Down:connect(Click)
  28.  
  29. ------------------------
  30. Ctrl + Click Teleport
  31. ------------------------
  32.  
  33. local Plr = game:GetService("Players").LocalPlayer
  34. local Mouse = Plr:GetMouse()
  35.  
  36. Mouse.Button1Down:connect(function()
  37. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  38. if not Mouse.Target then return end
  39. Plr.Character:MoveTo(Mouse.Hit.p)
  40. end)
  41.  
  42. ------------------------
  43. Ctrl + Click Destroy
  44. ------------------------
  45.  
  46. local Plr = game:GetService("Players").LocalPlayer
  47. local Mouse = Plr:GetMouse()
  48.  
  49. Mouse.Button1Down:connect(function()
  50. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  51. if not Mouse.Target then return end
  52. Mouse.Target:Destroy()
  53. end)
  54.  
  55. ------------------------
  56. Ctrl + Click CanCollide
  57. ------------------------
  58.  
  59. local Plr = game:GetService("Players").LocalPlayer
  60. local Mouse = Plr:GetMouse()
  61.  
  62. Mouse.Button1Down:connect(function()
  63. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  64. if not Mouse.Target then return end
  65. Mouse.Target.CanCollide = true
  66. end)
  67.  
  68. ------------------------
  69. Ctrl + Click Anchor
  70. ------------------------
  71.  
  72. local Plr = game:GetService("Players").LocalPlayer
  73. local Mouse = Plr:GetMouse()
  74.  
  75. Mouse.Button1Down:connect(function()
  76. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  77. if not Mouse.Target then return end
  78. Mouse.Target.Anchored = true
  79. end)
  80.  
  81. ------------------------
  82. New Script 2
  83. ------------------------
  84.  
  85. ------------------------
  86. Ctrl + Click UnCanCollide
  87. ------------------------
  88.  
  89. local Plr = game:GetService("Players").LocalPlayer
  90. local Mouse = Plr:GetMouse()
  91.  
  92. Mouse.Button1Down:connect(function()
  93. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  94. if not Mouse.Target then return end
  95. Mouse.Target.CanCollide = false
  96. end)
  97.  
  98. ------------------------
  99. Ctrl + Click UnAnchor
  100. ------------------------
  101.  
  102. local Plr = game:GetService("Players").LocalPlayer
  103. local Mouse = Plr:GetMouse()
  104.  
  105. Mouse.Button1Down:connect(function()
  106. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  107. if not Mouse.Target then return end
  108. Mouse.Target.Anchored = false
  109. end)
  110.  
  111. ------------------------
  112. New Script Click To Spawn Part No Ctrl Click
  113. ------------------------
  114.  
  115. wait(0.5)
  116. mouse = game.Players.LocalPlayer:GetMouse()
  117.  
  118. function Click()
  119. x = Instance.new("Part", game.Workspace)
  120. x.CFrame = mouse.Hit
  121. x.Anchored = true
  122. x.Size = Vector3.new(2,2,2)
  123. x.Rotation = Vector3.new(0, 0, 0)
  124. end
  125.  
  126. mouse.Button1Down:connect(Click)
  127.  
  128. ------------------------
  129. The End Of My Script
Add Comment
Please, Sign In to add comment