Advertisement
SmokeDelsin

my shdow clne

Jul 1st, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. while true do
  2. p = game.Players:GetChildren()
  3. for i = 1, #p do
  4. player = p[i]
  5. h = player.Character:findFirstChild("Head")
  6. t = player.Character:findFirstChild("Torso")
  7. ra = player.Character:findFirstChild("Right Arm")
  8. la = player.Character:findFirstChild("Left Arm")
  9. rl = player.Character:findFirstChild("Right Leg")
  10. ll = player.Character:findFirstChild("Left Leg")
  11. if h ~= nil then
  12. h1 = h:clone()
  13. h1.Parent = h
  14. h1.face:Remove()
  15. h1.BrickColor = BrickColor.new("Toothpaste")
  16. h1.Transparency = 0.4
  17. h1.Anchored = true
  18. h1.CanCollide = false
  19. end
  20. if t ~= nil then
  21. t1 = t:clone()
  22. t1.Parent = t
  23. t1.roblox:Remove()
  24. t1.BrickColor = BrickColor.new("Toothpaste")
  25. t1.Transparency = 0.4
  26. t1.Anchored = true
  27. t1.CanCollide = false
  28. end
  29. if ra ~= nil then
  30. ra1 = ra:clone()
  31. ra1.Parent = ra
  32. ra1.BrickColor = BrickColor.new("Toothpaste")
  33. ra1.Transparency = 0.4
  34. ra1.Anchored = true
  35. ra1.CanCollide = false
  36. end
  37. if la ~= nil then
  38. la1 = la:clone()
  39. la1.Parent = la
  40. la1.BrickColor = BrickColor.new("Toothpaste")
  41. la1.Transparency = 0.4
  42. la1.Anchored = true
  43. la1.CanCollide = false
  44. end
  45. if rl ~= nil then
  46. rl1 = rl:clone()
  47. rl1.Parent = rl
  48. rl1.BrickColor = BrickColor.new("Toothpaste")
  49. rl1.Transparency = 0.4
  50. rl1.Anchored = true
  51. rl1.CanCollide = false
  52. end
  53. if ll ~= nil then
  54. ll1 = ll:clone()
  55. ll1.Parent = ll
  56. ll1.BrickColor = BrickColor.new("Toothpaste")
  57. ll1.Transparency = 0.4
  58. ll1.Anchored = true
  59. ll1.CanCollide = false
  60. end
  61. wait(0.1)
  62. h1.Transparency = h1.Transparency + 0.2
  63. t1.Transparency = t1.Transparency + 0.2
  64. ra1.Transparency = ra1.Transparency + 0.2
  65. la1.Transparency = la1.Transparency + 0.2
  66. rl1.Transparency = rl1.Transparency + 0.2
  67. ll1.Transparency = ll1.Transparency + 0.2
  68. wait(0.1)
  69. h1.Transparency = h1.Transparency + 0.2
  70. t1.Transparency = t1.Transparency + 0.2
  71. ra1.Transparency = ra1.Transparency + 0.2
  72. la1.Transparency = la1.Transparency + 0.2
  73. rl1.Transparency = rl1.Transparency + 0.2
  74. ll1.Transparency = ll1.Transparency + 0.2
  75. wait(0.1)
  76. h1.Transparency = h1.Transparency + 0.2
  77. t1.Transparency = t1.Transparency + 0.2
  78. ra1.Transparency = ra1.Transparency + 0.2
  79. la1.Transparency = la1.Transparency + 0.2
  80. rl1.Transparency = rl1.Transparency + 0.2
  81. ll1.Transparency = ll1.Transparency + 0.2
  82. h1:Remove()
  83. t1:Remove()
  84. ra1:Remove()
  85. la1:Remove()
  86. rl1:Remove()
  87. ll1:Remove()
  88. end
  89. wait()
  90. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement