public Rigidbody2D rb;
GameObject myGameObject = new GameObject("Test Object"); // Make a new GO. Rigidbody gameObjectsRigidBody = myGameObject.AddComponent(); // Add the rigidbody. gameObjectsRigidBody.mass = 5; // Set the GO's mass to 5 via the Rigidbody.