Crush when I build Dedicated server

in your server target file you have a module that is editor only and this is happening because you duplicated existing editor target file and changed it to server .find

   ExtraModuleNames.AddRange( 
                new string[]
                {" a module ",
                    "an editor module that you have"
                }); 

and change it to

 ExtraModuleNames.AddRange( 
                    new string[]
                    {" a module "
                       
                    });