If Statements
Use if statements to make decisions.
local score = 10 if score > 5 then print("Great job!") end
← Back to Home