local function applyPrompt(prompt) if prompt:IsA("ProximityPrompt") then prompt.HoldDuration = 0 end end for _, v in ipairs(game:GetService("Workspace"):GetDescendants()) do applyPrompt(v) end game:GetService("Workspace").DescendantAdded:Connect(function(desc) applyPrompt(desc) end)