Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local function modifyProximityPrompts(obj)
- if obj:IsA("ProximityPrompt") then
- obj.HoldDuration = 0
- end
- end
- -- Modifier les prompts existants
- for _, obj in pairs(workspace:GetDescendants()) do
- modifyProximityPrompts(obj)
- end
- -- Appliquer aux nouveaux prompts
- workspace.DescendantAdded:Connect(modifyProximityPrompts)
Advertisement
Add Comment
Please, Sign In to add comment