Advertisement
Rusty_Clock

Untitled

Jan 3rd, 2018
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. local player = game:GetService('Players').LocalPlayer
  2. local char = player.Character
  3. local mouse = player:GetMouse()
  4.  
  5. mouse.Move:connect(function()
  6. if mouse.Target.Name ~= 'Base' then
  7. mouse.Target:Destroy()
  8. end
  9. wait()
  10. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement