Advertisement
mcrath101

hello

May 7th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. game.Workspace.ChildAdded:connect(function(Child)
  2. wait(.1)
  3. if Child.Name=="ShadowClone" then
  4. local Light=Instance.new("PointLight",Child.Torso)
  5. Light.Color=Color3.new(Child.Head.BrickColor.Color)
  6. Light.Range=10
  7. Light.Brightness=2
  8. Light.Shadows=true
  9. for t=1,5 do
  10. wait(.1)
  11. for i=1,#Child:GetChildren() do
  12. Child:GetChildren()[i].Transparency=t/10+.5
  13. end
  14. end
  15. Child:remove()
  16. end
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement