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