Advertisement
Finnegan5

dssd

Jun 30th, 2017
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. --made by sandbag777--plz don't steal--
  2. Tool = script.Parent
  3. enabled = true
  4. function onButton1Down(mouse)
  5. if not enabled then
  6. return
  7. end
  8. enabled = false
  9. mouse.Icon="rbxasset://textures\\GunWaitCursor.png"
  10. eye=script.Parent:FindFirstChild("Handle")
  11. eye=eye:FindFirstChild("Script")
  12. if eye~=nil then
  13. eyeclone=eye:clone()
  14. eyeclone.Parent=script.Parent:FindFirstChild("Handle")
  15. if eye.Disabled==true then
  16. eye.Disabled=false
  17. end end
  18. wait(2)
  19. mouse.Icon="rbxasset://textures\\GunCursor.png"
  20. enabled = true
  21. end
  22. function onEquippedLocal(mouse)
  23. if mouse==nil then
  24. print("Mouse not found")
  25. return
  26. end
  27. mouse.Icon= "rbxasset://textures\\GunCursor.png"
  28. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  29. end
  30. Tool.Equipped:connect(onEquippedLocal)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement