Simple component which makes the object always face towards the scene's camera:
public sealed class FaceTowardsCamera : Component
{
protected override void OnUpdate()
{
WorldRotation = Rotation.LookAt( WorldPosition - Scene.Camera.WorldPosition );
}
}