Advertisement
Guest User

Untitled

a guest
Jul 17th, 2018
2,833
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. function disappear()
  2. script.Parent.Transparency = 0.1
  3. wait(0.1)
  4. script.Parent.Transparency = 0.2
  5. wait(0.1)
  6. script.Parent.Transparency = 0.3
  7. wait(0.1)
  8. script.Parent.Transparency = 0.4
  9. wait(0.1)
  10. script.Parent.Transparency = 0.5
  11. wait(0.1)
  12. script.Parent.Transparency = 0.6
  13. wait(0.1)
  14. script.Parent.Transparency = 0.7
  15. script.Parent.CanCollide = false
  16. wait(0.1)
  17. script.Parent.Transparency = 0.8
  18. wait(0.1)
  19. script.Parent.Transparency = 0.9
  20. wait(0.1)
  21. script.Parent.Transparency = 1
  22. wait(5)
  23. script.Parent.Transparency = 1
  24. wait(0.1)
  25. script.Parent.Transparency = 0.9
  26. wait(0.1)
  27. script.Parent.Transparency = 0.8
  28. wait(0.1)
  29. script.Parent.Transparency = 0.7
  30. script.Parent.CanCollide = true
  31. wait(0.1)
  32. script.Parent.Transparency = 0.6
  33. wait(0.1)
  34. script.Parent.Transparency = 0.5
  35. wait(0.1)
  36. script.Parent.Transparency = 0.4
  37. wait(0.1)
  38. script.Parent.Transparency = 0.3
  39. wait(0.1)
  40. script.Parent.Transparency = 0.2
  41. wait(0.1)
  42. script.Parent.Transparency = 0.1
  43. wait(0.1)
  44. script.Parent.Transparency = 0
  45. end
  46.  
  47. script.Parent.Touched:connect(disappear)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement