Advertisement
SmokeDelsin

GGNORE

May 22nd, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. function onTouch(part)
  2. local human = part.Parent:findFirstChild("Humanoid")
  3. if human ~= nil then
  4. local l1 = part.Parent:findFirstChild("Left Arm")
  5. local l2 = part.Parent:findFirstChild("Right Arm")
  6. local l3 = part.Parent:findFirstChild("Left Leg")
  7. local l4 = part.Parent:findFirstChild("Right Leg")
  8. l1.Transparency = 1
  9. l2.Transparency = 1
  10. l3.Transparency = 0
  11. l4.Transparency = 0
  12. l1.CanCollide = false
  13. l2.CabCollide = false
  14.  
  15.  
  16. end
  17. end
  18. script.Parent.Touched:connect(onTouch)
  19.  
  20. --COLORS
  21.  
  22. --1 = white
  23. --208 = Light stone grey
  24. --194 = Medium stone grey
  25. --199 = Dark stone grey
  26. --26 = Black
  27. --21 = Bright red
  28. --24 = Bright yellow
  29. --226 = Cool yellow
  30. --23 = Bright blue
  31. --107 = Bright bluish green
  32. --102 = Medium blue
  33. --11 = Pastel blue
  34. --45 = Light blue
  35. --135 = Sand blue
  36. --106 = Bright orange
  37. --105 = Br. yellowish orange
  38. --141 = Earth green
  39. --28 = Dark green
  40. --37 = Bright green
  41. --119 = Br. yellowish green
  42. --29 = Medium green
  43. --151 = Sand green
  44. --38 = Dark orange
  45. --192 = Reddish brown
  46. --104 = Bright violet
  47. --9 = Light reddish violet
  48. --101 = Medium red
  49. --5 = Brick Yellow
  50. --153 = Sand red
  51. --217 = Brown
  52. --18 = Nougat
  53. --125 = Light orange
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement