I need a script to attach to a 3D Text so its always like looking towards you. Like its always facing the main camera.
Like…
var target : Transform;
function Update()
{
transform.LookAt(target);
}
Parent the text to your Camera. Works well.