Laser not burning with Gcode

Just received an Ortur laser master 2, OLF 1.37,grbl 1.1f.

I have been able to use LaserGrbl to burn some wood creations but I would like to use Lightburn. Using lightburn I can get the laser to burn using the fire button. However, when running any gcode, it moves the laser and turns on the laser but does not burn. Below are my configs and a gcode file. Any help would be appreciated.

$0=20
$1=50
$2=0
$3=0
$4=0
$5=0
$6=0
$10=1
$11=0.050
$12=0.002
$13=1
$20=0
$21=1
$22=1
$23=5
$24=600.000
$25=3000.000
$26=100
$27=2.000
$30=300
$31=0
$32=1
$33=250.000
$100=80.000
$101=80.000
$102=80.000
$110=9000.000
$111=9000.000
$112=9000.000
$120=2200.000
$121=1800.000
$122=2500.000
$130=400.000
$131=430.000
$132=1.000

Gcode File:
; LightBurn 0.9.19
; GRBL device profile, current position
; Bounds: X0 Y0 to X202.85 Y24.16
G00 G17 G40 G20 G54
G91
M4
; Cut @ 1000 in/min, 45% power
M8
G0X0.095Y0.2848
; Layer C00
G1Y0.5523S135F1000
G1X0.0443
G1X0.0442
G1X0.0231Y-0.0009
G1X0.023Y-0.0019
G1X0.0229Y-0.0031
G1X0.0228Y-0.0043
G1X0.0212Y-0.0058
G1X0.0208Y-0.0074
G1X0.0199Y-0.0092
G1X0.0193Y-0.0106
G1X0.013Y-0.0086
G1X0.0123Y-0.0094
G1X0.0115Y-0.0104
G1X0.0107Y-0.0111
G1X0.0099Y-0.0119
G1X0.0089Y-0.0126

; (snip)

; Layer C00
G1Y0.0937
G1X-0.1028
G1Y-0.0937
G1X0.1028
M9
G1S0
M5
; return to starting pos
G0 X-0.7606Y-0.8298
M2

You’re using inches / minute for speed. 1000 inches/min is 423 mm/sec, or roughly the speed I use when engraving with my 60w CO2 system.

Your machine is rate limited to 110 mm/sec, so you’re getting about 1/4 the output power you asked for since the machine can’t move that fast.

I would recommend changing your settings to this:
image

Then re-entering the ‘1000’ again, so it’s in mm/min, not inches/min. You can probably go up to 3000 to 4500 mm/min.

Thank you. I skipped past that. Changing it and resetting solved the problem. Going to buy my license right now. This is an awesome program. Thanks again.