I need help, how to repeat the script when it ends?
1 | game.Workspace.Trail.Color = "Bright blue" |
2 | wait( 1 ) |
3 | game.Workspace.Trail.Color = "Bright red" |
4 | wait( 1 ) |
5 | game.Workpace.Trail.Color = "Yellow" |
6 | --Starts over when it get here. |
1 | while true do |
2 | game.Workspace.Trail.Color = "Bright blue" |
3 | wait( 1 ) |
4 | game.Workspace.Trail.Color = "Bright red" |
5 | wait( 1 ) |
6 | game.Workpace.Trail.Color = "Yellow" |
7 | --Starts over when it get here. |
8 | end |
while true do
Is a "While" Loop function which repeats everything inside the function