Advertisement
Guest User

Traffic light system

a guest
Aug 16th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Red = script.Parent.Red
  2. Green = script.Parent.Green
  3. Yellow = script.Parent.Yellow
  4. on = true
  5.  
  6. while true do
  7. Red.Light.Enabled = true
  8. Red.Transparency = 0
  9. Yellow.Light.Enabled = false
  10. Yellow.Transparency = 0.8
  11. Green.Light.Enabled = false
  12. Green.Transparency = 0.8
  13. wait(5)
  14. Yellow.Light.Enabled = true
  15. Yellow.Transparency = 0
  16. Red.Light.Enabled = false
  17. Red.Transparency = 0.8
  18. wait(5)
  19. Green.Light.Enabled = true
  20. Green.Transparency = 0
  21. Yellow.Light.Enabled = false
  22. Yellow.Transparency = 0.8
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement