MaxproGlitcher

ProximityPrompt

Feb 28th, 2025
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local function modifyProximityPrompts(obj)
  2. if obj:IsA("ProximityPrompt") then
  3. obj.HoldDuration = 0
  4. end
  5. end
  6.  
  7. -- Modifier les prompts existants
  8. for _, obj in pairs(workspace:GetDescendants()) do
  9. modifyProximityPrompts(obj)
  10. end
  11.  
  12. -- Appliquer aux nouveaux prompts
  13. workspace.DescendantAdded:Connect(modifyProximityPrompts)
  14.  
Advertisement
Add Comment
Please, Sign In to add comment