-- may not work with games that has good anti-cheat local ProximityPromptService = game:GetService("ProximityPromptService") local function instantPrompt(prompt) if prompt:IsA("ProximityPrompt") then prompt.HoldDuration = 0 end end for _, obj in ipairs(workspace:GetDescendants()) do instantPrompt(obj) end workspace.DescendantAdded:Connect(function(obj) instantPrompt(obj) end)