help with camera manipulation?
i have a localscript that is supposed to focus the camera on a brick when it starts, and the focus on the part that is selected(it is stored in an ObjectValue) but it randomly focuses on a part, and will not focus on the selected when the player activates the focus feature. here is the script(i know i should use a function and call it instead of writing the code twice, but i failed to do so)
i get no error messages
01 | workspace.CurrentCamera.CameraSubject = workspace.BuildingBase |
03 | script.Parent.MouseButton 1 Click:connect( function () |
04 | workspace.CurrentCamera.CameraSubject = script.Parent.Parent.Parent.Parent.SelectedItem.Value |
09 | function onKeyPress(inputObject, gameProcessedEvent) |
10 | if inputObject.KeyCode = = Enum.KeyCode.F then |
11 | workspace.CurrentCamera.CameraSubject = script.Parent.Parent.Parent.Parent.SelectedItem.Value |
15 | game:GetService( "UserInputService" ).InputBegan:connect(onKeyPress) |
any ideas for my problems?
thanks