Disabling the default Roblox vehicle seat UI?

I’m trying to make a vehicle UI, however, I’m not sure how to disable the default Roblox one for sitting in a vehicle seat?

3 Likes

vehicles seats actually have a property called HeadsUpDisplay to disable just set it to false. You can do it via script like this:

local VehicleSeat = --vehicle seat here
VehicleSeat.HeadsUpDisplay = false
11 Likes