So inside the ProjectileBase.cpp file in BeginPlay() function i added one more particle spawn. I think it looks pretty good.
void AProjectileBase::BeginPlay()
{
InitialLifeSpan = 3;
Super::BeginPlay();
UGameplayStatics::SpawnEmitterAtLocation(this, HitParticle, GetActorLocation());
}