Advertisement
SmokeDelsin

neon body

May 10th, 2015
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. --OMG XD
  2. --
  3. --sEtH457
  4.  
  5. bin = script.Parent
  6. Debounce = false
  7.  
  8.  
  9. function onButton1Down(mouse)
  10.  
  11. local player = game.Players.LocalPlayer
  12. if player == nil then return end
  13. if (Debounce == false) then
  14. Debounce = true
  15. mouse.Icon = "rbxasset://textures\\ArrowCursor.png"
  16. player.Character.Head.Transparency = .7
  17. player.Character.Torso.Transparency = .7
  18. player.Character:FindFirstChild("Right Arm").Transparency = .7
  19. player.Character:FindFirstChild("Right Leg").Transparency = .7
  20. player.Character:FindFirstChild("Left Arm").Transparency = .7
  21. player.Character:FindFirstChild("Left Leg").Transparency = .7
  22.  
  23. wait(20)
  24.  
  25. player.Character.Head.Transparency = .7
  26. player.Character.Torso.Transparency = .7
  27. player.Character:FindFirstChild("Right Arm").Transparency = .7
  28. player.Character:FindFirstChild("Right Leg").Transparency = .7
  29. player.Character:FindFirstChild("Left Arm").Transparency = .7
  30. player.Character:FindFirstChild("Left Leg").Transparency = .7
  31.  
  32. wait(2)
  33.  
  34. player.Character.Head.Transparency = .7
  35. player.Character.Torso.Transparency = .7
  36. player.Character:FindFirstChild("Right Arm").Transparency = .7
  37. player.Character:FindFirstChild("Right Leg").Transparency = .7
  38. player.Character:FindFirstChild("Left Arm").Transparency = .7
  39. player.Character:FindFirstChild("Left Leg").Transparency = .7
  40.  
  41. wait(2)
  42.  
  43. player.Character.Head.Transparency = .7
  44. player.Character.Torso.Transparency = .7
  45. player.Character:FindFirstChild("Right Arm").Transparency = .7
  46. player.Character:FindFirstChild("Right Leg").Transparency = .7
  47. player.Character:FindFirstChild("Left Arm").Transparency = .7
  48. player.Character:FindFirstChild("Left Leg").Transparency = .7
  49.  
  50. wait(1)
  51.  
  52. player.Character.Head.Transparency = 7
  53. player.Character.Torso.Transparency = 7
  54. player.Character:FindFirstChild("Right Arm").Transparency = 7
  55. player.Character:FindFirstChild("Right Leg").Transparency = 7
  56. player.Character:FindFirstChild("Left Arm").Transparency = 7
  57. player.Character:FindFirstChild("Left Leg").Transparency = 7
  58. wait(10) Debounce = false
  59.  
  60.  
  61. end
  62.  
  63. end
  64.  
  65. function onSelected(mouse)
  66. mouse.Icon = "rbxasset://textures\\ArrowCursor.png"
  67. mouse.Button1Down:connect(function() onButton1Down(mouse) end)
  68. end
  69.  
  70. bin.Selected:connect(onSelected)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement