Tutorials
Step-by-step series to learn Lua from scratch.
Lua Fundamentals
1 2 3
Installing Lua on Windows, macOS, and Linux
Learn how to install Lua on any operating system, verify your installation, and write your first Lua script.
min read · beginner
Variables and Types in Lua
Learn how Lua handles variables, understand the difference between local and global variables, and explore Lua's eight basic data types.
min read · beginner
Control Flow in Lua: if, for, while, and repeat
Master Lua control flow with if/elseif/else, for loops, while loops, and repeat...until. Build decision-making into your programs.
min read · beginner