Something unexpectedly tried to set the parent of LocalScript to NULL while trying to set the parent of LocalScript. Current parent is PlayerScripts

script.CameraOffset.Parent = game.Players.LocalPlayer.Character
script:Destroy()

This is the entire script. CameraOffset is a Vector3 value.

Can’t you put that value in StarterCharacterScripts if you want it to go to the Character?

1 Like

Yup, I forgot I can place the value in StarterPlayer scripts :man_facepalming:

I don’t know if that can work as only scripts can be placed there I think, but give it a shot, put the value in StarterCharacterScripts and see if that does anything?

Where is this script located anyways?

1 Like

It was located in StarterPlayerScripts, but I found out that was unnescesary as the value does appear in the player’s character if put in StarterCharacterScripts.

1 Like

I didn’t word out my original post correctly as I said to put the script there instead of the value haha!

If you have anymore issues don’t be afraid to make another post!

Edit since this was set as the solution post: Basically all @OP had to do was put the value in StarterCharacterScripts for it to replicate to the character

1 Like