Hi,
Not 100% sure I understand your question, but [SerializeField] seems to be what you're looking for:
using UnityEngine;
using System.Collections;
public class NewScript : MonoBehaviour {
[SerializeField]
private NewScript myNewScript = new NewScript();
}