Major - After making verse changes, can't open my project due to crash

I made some verse UI changes, and when attempting to hit ‘Play’, it crashed my client. Now when attempting to open my project, my editor crashes.

Crash Logs:
UnrealEditorFortnite.log (799.2 KB)

Update: These 2 lines from my verse script caused my client to crash when opening the project

Anchors := anchors{ Maximum:= vector2{X:=0.0, Y:=0.0} }
                        Offsets := margin{ Right: 960.0, Top: 540 } # Screen position of the UI canvas, measured in pixels from edges.

After removing these lines, I can open my project again

Update again: Narrowed it down to this part of the code Right: 960.0, Top: 540, this is what caused my project to crash at launch

Right is a float and Top in an integer in your code. They should both be floats, I believe…But shouldn’t cause a crash, just an error.

1 Like

Oof yeah, this definitely shouldn’t be crashing your editor. Could you please post your entire script? :open_mouth:

You are using : instead of := (but should only be an error, not a crash).