Mr_3242

instant proximity prompts

May 11th, 2026 (edited)
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.31 KB | Gaming | 0 0
  1. local workspace = game:GetService("Workspace")
  2.  
  3. for _, v in ipairs(workspace:GetDescendants()) do
  4.     if v:IsA("ProximityPrompt") then
  5.         v.HoldDuration = 0
  6.     end
  7. end
  8.  
  9. workspace.DescendantAdded:Connect(function(desc)
  10.     if desc:IsA("ProximityPrompt") then
  11.         desc.HoldDuration = 0
  12.     end
  13. end)
Tags: delta
Add Comment
Please, Sign In to add comment