Guest User

Untitled

a guest
Jun 19th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. @name Auto RollerCoaster
  2. @outputs Timer Thruster Thruster2 Thruster3
  3. @inputs Button
  4.  
  5. interval(1000)
  6. if(Button)
  7. {
  8. Timer=30
  9. hint(1,4, "Made by The Flame)
  10. hint(1,4, "You have 10 seconds to get in")
  11. }
  12. Timer--
  13. if(Timer<=20)
  14. {
  15. Thruster=1, Thruster2=1, Thruster3=1
  16. }
  17. if(Timer<=15)
  18. {
  19. Thruster2=0, Thruster3=0
  20. }
  21. if(Timer<=5)
  22. {
  23. Thruster=0
  24. }
  25. if(Timer<=0)
  26. {
  27. Timer=30, Timer++
  28. }
  29. if(owner(): lastSaid():explode(" ")== "/stop")
  30. {
  31. Thruster=0 Thruster2=0 Thruster3=0
  32. }
Add Comment
Please, Sign In to add comment