Is there a way to make a ProximityPrompt invisible?

I use a ProximityPrompt to enter a car. But if i am in the car i can still see the ProximityPrompt. For some reason it does not have the invisble property. Is there any way i can make it invisible whit out destroying it?

1 Like

Did you mean this?

1 Like

Try making the prompt outside the car and enable the Requirelineofsight

*so when a player is in, the prompt disappears unless its third person

1 Like

If i disable the Promt it does not work which is what i want. But it is still visable.

Can we see how the car’s objects are implemented inside the Explorer?

1 Like

A solution that is not really great would be to go under the PlayerGui, and iterate through the proximity prompts until you find a BillboardGui that has its Adornee set to the part

image_2021-05-08_113735

Change the descendants transparency to make them invisible.

1 Like

You’re right Jack. You can disable it and enable it again.

1 Like

You could do local IsInCar = false
So when you trigger the prompt it makes it true and when its true its disabled when you then dont sit in the seat make it false again. And when its false make the prompt enabled again. Hope this makes sense

1 Like

I ended up switching the parent of the promt because for some reason the promt is not invisible if i disable it.

Edit: i restarted roblox studio and your solution works. I don’t know why it didn’t worked earlier.