Hey I have an issue, I’m trying to setup a camera for a 3rd person game and for some reason I’m getting this error in the console. Should I just restructure the line or delete it altogether?
You don’t have the full line shown, but either cameraLookTarget or localPlayer are probably null. Use Debug.Log to figure out which is null, and fix the issue by making them not null before trying to use them.
Update() is probably called before the localPlayer has joined? Make some null checks before you go into update.