How to make ProximityPrompt that is visible for certain players?

i want to make proximity prompt that is visible for certain players
can you help me please?

You can probably just move it from replicated storage to the workspace using a local script

1 Like

Like this?

proximityprompt.parent = game.workspace?

Move it from Replicated Storage to the workspace with the use of a local script.

1 Like

set enabled to true in a local script

1 Like

you can enable the prompt via local script

1 Like

ok i will try this when roblox studio fix
thanks for answers!

and can i hide proximity prompt with another way?

The class ProximityPrompt comes with a Disabled property, like most interactable classes.

You can change the properties of objects in a LocalScript, which isn’t reflected onto the server unless it uses an event. The easiest solution to your problem is to simply play with your prompt in a client space.

2 Likes