Rigidbody.AddForce
AddForce(force: Vector3): void;
void AddForce(Vector3 force);
def AddForce(force as Vector3) as void
AddForce(force: Vector3, mode: ForceMode): void;
void AddForce(Vector3 force, ForceMode mode);
def AddForce(force as Vector3, mode as ForceMode) as void
Description

Adds a force to the rigidbody. As a result the rigidbody will start moving.

	// Adds a force upwards in the global coordinate system

function FixedUpdate () { rigidbody.AddForce (Vector3.up * 10); }
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void FixedUpdate() {
        rigidbody.AddForce(Vector3.up * 10);
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def FixedUpdate() as void:
		rigidbody.AddForce((Vector3.up * 10))

AddForce(x: float, y: float, z: float): void;
void AddForce(float x, float y, float z);
def AddForce(x as float, y as float, z as float) as void
AddForce(x: float, y: float, z: float, mode: ForceMode): void;
void AddForce(float x, float y, float z, ForceMode mode);
def AddForce(x as float, y as float, z as float, mode as ForceMode) as void
Description

Adds a force to the rigidbody. As a result the rigidbody will start moving.

	// Adds a force upwards in the global coordinate system

function FixedUpdate () { rigidbody.AddForce (0, 10, 0); }
using UnityEngine;
using System.Collections;

public class Example : MonoBehaviour {
    void FixedUpdate() {
        rigidbody.AddForce(0, 10, 0);
    }
}
import UnityEngine
import System.Collections

public class Example(MonoBehaviour):

	def FixedUpdate() as void:
		rigidbody.AddForce(0, 10, 0)

If you want to apply a force over several frames you should apply it inside FixedUpdate instead of Update.