I can connect to wifi with esp8266 and arduino but after connection i cannot get to loop section on arduino

This is the code . I am new to codding and whole iot stuff . After i work this code it says connected to wifi and stops there nothing happening . ( sorry for my bad english)

#define BLYNK_PRINT Serial
char auth[] = "********************";
char ssid[] = "TurkTelekom_TBB3E";
char pass[] = "******";
#include <SoftwareSerial.h>
SoftwareSerial EspSerial(2, 3); // RX, TX
#include <ESP8266_Lib.h>
#include <BlynkSimpleShieldEsp8266.h>
#define ESP8266_BAUD 9600
ESP8266 wifi(&EspSerial);
BLYNK_WRITE(V5)
{
  int i = param.asInt(); // assigning incoming value from pin V1 to a variable
  // You can also use:
  // String i = param.asStr();
  // double d = param.asDouble();
  Serial.print("V5 Slider value is: ");
  Serial.println(i);
}
///////////////////////////////////////////////////////////////////////////////////////////////////////
#define role 13
#include <HX711_ADC.h>
#include <Servo.h>
Servo servo;

const int HX711_dout = 4; //mcu > HX711 dout pin
const int HX711_sck = 5; //mcu > HX711 sck pin
const int HX711_dout2 = 6; //mcu > HX711 dout pin
const int HX711_sck2 = 7; //mcu > HX711 sck pin

//HX711 constructor:
HX711_ADC LoadCell(HX711_dout, HX711_sck);HX711_ADC LoadCell2(HX711_dout2, HX711_sck2);
const int calVal_eepromAdress = 0;
long t;long k;
int pos1=0;int pos2=180;//servo motor pozisyonları

void setup() {
  servo.attach(9);
  pinMode(role,OUTPUT);
  Serial.begin(9600); delay(10);
  Serial.println();Serial.println("Starting...");
  LoadCell.begin(); LoadCell2.begin();
  float calibrationValue; // calibration value (see example file "Calibration.ino")
  calibrationValue = 696.0; // uncomment this if you want to set the calibration value in the sketch
  long stabilizingtime = 2000; // preciscion right after power-up can be improved by adding a few seconds of stabilizing time
  boolean _tare = true; //set this to false if you don't want tare to be performed in the next step
  LoadCell.start(stabilizingtime, _tare); LoadCell2.start(stabilizingtime, _tare);
  if (LoadCell.getTareTimeoutFlag()||LoadCell2.getTareTimeoutFlag()) {
    Serial.println("Timeout, check MCU>HX711 wiring and pin designations");
    while (1);
  }
  else {
    LoadCell.setCalFactor(calibrationValue);
     LoadCell2.setCalFactor(calibrationValue);// set calibration value (float)
    Serial.println("Startup is complete");
  }
  ////////////////////////////////////////////////////ESP&BLYNK////////////////////////////////////
  EspSerial.begin(ESP8266_BAUD);
  delay(10);
Blynk.begin(auth, wifi, ssid, pass);
//////////////////////////////////////////////////////////////////////////////////////////

}

void loop() {
  static boolean newDataReady = 0;static boolean newDataReady2 = 0;
  const int serialPrintInterval = 0; const int serialPrintInterval2 = 0; //increase value to slow down serial print activity
  if (LoadCell.update()&&LoadCell2.update()){
  newDataReady = true;newDataReady2 = true;
  }

  if (newDataReady) {
    if (millis() > t + serialPrintInterval) {
      float i = LoadCell.getData();
      Serial.print("Load_cell output val: ");
      Serial.println(i);
      newDataReady = 0;
      t = millis();
       if (i <=30)
       {delay(100);
         servo.write(pos2);
       
         delay(100);
       }
         else
         {
          servo.write(pos1);
          
         }}
  }
if (newDataReady2) {
    if (millis() > k + serialPrintInterval2) {
      float v = LoadCell2.getData();
      Serial.print("Load_cell2 output val: ");
      Serial.println(v);
      newDataReady2 = 0;
      k = millis();
       if (v <=30)
       {delay(100);
         digitalWrite(role,LOW);
       
         delay(100);
       }
         else
         {
          digitalWrite(role,HIGH);
          
         }}
  }
  Blynk.run();
  }

Exactly what hardware are you using?
You tile mentions ESP8266 and some sort of unnamed Arduino, but you’ve added the EP32 tag to the topic.

Your first task is to remove everything from your void loop except Blynk.run(); and probably add 'timer.run();` depending on what exactly you are trying to achieve.

Read this:

If you still have problems then copy/paste the contents of your serial monitor so we can see exactly what is happening.

Pete.

Arduino uno and Esp8266-01
and this is the serial monitor after cleaning my loop.
samething before cleaning.

Starting…
Startup is complete
[5720]
___ __ __
/ _ )/ /_ _____ / /__
/ _ / / // / _ / '/
/
//_, /////_
/
__/ v0.6.1 on Arduino Uno

[6323] Connecting to TurkTelekom_TBB3E
[9484] 00200.9.5(b1)
compiled @ Dec 25 2014 21:40:28
AI-THINKER Dec 25 2014
[14799] +CIFSR:STAIP,“"
+CIFSR:STAMAC,"
***”
[14809] Connected to WiFi

Have you previously overwritten the default AT firmware of the ESP-01 by uploading a sketch to it?

I’d normally expect to see something like this…

    ___  __          __
   / _ )/ /_ _____  / /__
  / _  / / // / _ \/  '_/
 /____/_/\_, /_//_/_/\_\
        /___/ v0.6.1 on Arduino Mega

[599] Connecting to UltraNet
[3648] AT version:1.1.0.0(May 11 2016 18:09:56)
SDK version:1.5.4(baaeaebb)
Ai-Thinker Technology Co. Ltd.
Jun 13 2016 11:29:20
OK
[4732] Failed to enable MUX
[7757] +CIFSR:STAIP,"192.168.1.33"
+CIFSR:STAMAC,"60:01:94:10:3c:32"
[7764] Connected to WiFi
[17971] Ready (ping: 11ms).

but your output isn’t showing the AT firmware version of the ESP-01

Pete.