BREAK


break

Example:

for i = 0, 10 do
	if i == 5 then
		break
	end
	print ( i )
end

--prints 0 1 2 3 4

71

18 Mar 2023

Font