Advertisement
Zheideys9157

Ctrl + Click = Delete

Aug 19th, 2019
483
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.65 KB | None | 0 0
  1. --█░░█ █▀▀ ░▀░ █▀▀▄ █▀▀ █░░█ █▀▀ ▄▀▀▄ ▄█░ █▀▀ ▀▀▀█
  2. --█▀▀█ █▀▀ ▀█▀ █░░█ █▀▀ █▄▄█ ▀▀█ ▀▄▄█ ░█░ ▀▀▄ ░░█░
  3. --▀░░▀ ▀▀▀ ▀▀▀ ▀▀▀░ ▀▀▀ ▄▄▄█ ▀▀▀ ░▄▄▀ ▄█▄ ▄▄▀ ░▐▌░
  4.  
  5. local Plr = game:GetService("Players").LocalPlayer
  6. local Mouse = Plr:GetMouse()
  7.  
  8. Mouse.Button1Down:connect(function()
  9. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  10. if not Mouse.Target then return end
  11. Mouse.Target:Destroy()
  12. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement