I want to make you the player to not click and don’t see it I have the player selected but I don’t know how to make the prompt not visible and not clickable
If that’s the case, then for the Script that I had provided earlier, you can just change this:
To waiting for the Player’s own ProximityPrompt:
local playerTorso = Character.Torso
playerTorso.ChildAdded:Connect(function(prox)
wait()
if prox:IsA(“ProximityPrompt”) then
prox.Enabled = false
end
end)
If it’s disabled on the client it cannot be interacted with/enabled by the client, only an exploiter would be able to do this. To prevent exploiters from using the proximity prompt you would need to run server-side checks to prevent a player from triggering their own proximity prompt.
are you doing WaitForChild(“ProximityPrompt”)? That shouldn’t be able to return nil since the rest of the code will only run when proximity prompt is not nil