Loops

Series description

In computer science, loops are a common feature in many scripts, often used to repeat sets of code. This series will cover two of the most common loops: for and while loops.

Objectives and prerequisites

Learning objectives

Understand situations where loops are useful as opposed to alternative forms of writing a script.

Be able to write out for and while loops, while identifying the syntax for both.

Prerequisites

Have a general understanding of variables in Lua.

Series Contents

ArticleDescription
Repeat code with while LoopsLearn how to repeat code to create a color changing part.
Intro to for loopsUse a common loop that repeats instructions for a set amount of times.
Loops practice: glowing lights with for loopsPractice using for loops by making lights glow.
Loops Practice: Creating a Timed BridgeA more advanced implementation of a for loop that makes a bridge disappear and reappear.
Nesting loopsAdd a loop within a loop for more complex behavior and code.