I dont really know if this is the right category, but i dont really know what is this, but however i made a script to change the camera subject to the car, and it worked, but when i enter the driverseat the car turns into this creepy cursed figure
heres the script
local character = script.Parent
local humanoid = character:WaitForChild("Humanoid")
function onSeated(isSeated, seat)
if isSeated then
if seat:IsA("VehicleSeat") then
local camera = workspace.CurrentCamera
camera.CameraSubject = seat.Parent.PrimaryPart
end
if seat:IsA("Seat") then
local camera = workspace.CurrentCamera
camera.CameraSubject = seat.Parent.Parent.Parent.PrimaryPart
end
else
local camera = workspace.CurrentCamera
camera.CameraSubject = character.Humanoid
end
end
humanoid.Seated:Connect(onSeated)