print output in lua code example
Example 1: print script lua
print("hi")
end
Example 2: how to print in lua
print("text"..v) -- "" for strings, '..' to concencate, type name of variable to print variable
print("hi")
end
print("text"..v) -- "" for strings, '..' to concencate, type name of variable to print variable