Vehicleseat camera not working after you use it once?
I don't get why this is happening. There's a local script parented to a server script, then parented to a vehicleseat. I'm trying to make an RC car. The first time the camera works good, but then the second time you use it, it just does not want to focus on the car. Why is this happening!?
Serverscript:
01 | print ( "Camera script loading" ) |
02 | local newscript = script.CameraChange:Clone() |
03 | script.Parent.ChildAdded:Connect( function (weld) |
04 | if weld.Name = = "SeatWeld" then |
05 | local h = script.Parent.Occupant |
08 | newscript.Parent = h.Parent |
localscript:
01 | Camera = game.Workspace.CurrentCamera |
02 | Object = game.Workspace.HPIBlitz.HPIBlitz.Shell |
03 | Player = script.Parent.Humanoid |
04 | Camera.CameraSubject = Object |
07 | if Player.Sit = = false then |
08 | Camera.CameraSubject = Player |