local probesFolder = workspace.player_related.probes -- Function to modify a specific prompt local function modifyPrompt(object) -- Look for the Prompt object inside the PromptPart local prompt = object:FindFirstChild("PromptPart") and object.PromptPart:FindFirstChild("Prompt") if prompt and prompt:IsA("ProximityPrompt") then prompt.HoldDuration = 0 prompt.Enabled = true prompt.MaxActivationDistance = 20 -- Adjust as needed -- Optional: Fire them all instantly (Careful: this might trigger many things at once) -- fireproximityprompt(prompt) end end -- Apply to existing probes for _, probe in pairs(probesFolder:GetChildren()) do modifyPrompt(probe) end -- Watch for new probes that might be added later probesFolder.ChildAdded:Connect(function(newProbe) -- Give it a tiny delay to ensure children are loaded task.wait(0.1) modifyPrompt(newProbe) end)