[SOLVED] Trying to Index nill with 'Value'?
Asked by
4 years ago Edited 4 years ago
I made a very small script to change a value, which in turn changes the camera angle in another script. The problem is this error. I don't know what i did wrong this time, but i hope to get some help here.
The script:
1 | local cameraValues = game.ReplicatedStorage:FindFirstChild( "CameraValues" ) |
3 | script.Parent.Touched:Connect( function () |
4 | cameraValues:FindFirstChild( "Back" ).Value = false |
5 | cameraValues:FindFirstChild( "Front" ).Value = true |
6 | cameraValues:FindFirstChild( "Side" ).Value = false |
The full error:
19:21:28.378 Workspace.CameraFront.FrontChange:6: attempt to index nil with 'Value' - Server - FrontChange:6
Any help is appreciated!