Its supposed to be like that.
The
help even says:
Quote: "Be aware that included source code is appended to the end of the program, so if you #include any code that isn't part of a function it will be run if your main program reaches the end of its source code."
So your lines where you set the values arent actually run unless your code is allowed to reach those lines which are added at the end of the file (typically after your do loop)
Easiest way to fix it is just to define the global variables and set their values on one line
global camera_Zadjust = 45//adjust camera to be in front or behind
global mouse_MoveSpeed as float = 0.24
This then works with either #insert or #include