how to comment out in a .lua file code example
Example 1: lua comments
-- Inline Comments
--[[ text ]]-- Block Comments
Example 2: lua commenting
-- Your comment here
-- Inline Comments
--[[ text ]]-- Block Comments
-- Your comment here