MaxproGlitcher

Remove Proximity Prompt Cooldowns & Hold Time

Aug 9th, 2025
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. -- Remove Proximity Prompt Cooldowns & Hold Time
  2. local function a()
  3. for _, b in ipairs(game:GetDescendants()) do
  4. if b:IsA("ProximityPrompt") then
  5. b.HoldDuration = 0
  6. end
  7. end
  8. end
  9. a()
  10. game.DescendantAdded:Connect(function(c)
  11. if c:IsA("ProximityPrompt") then
  12. c.HoldDuration = 0
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment