Universal Script 📌
2.2k Views

Change Proximity Promt duration

Universal Script 📌Uploaded by
1 year ago
Please login to perform these actions:

Description

Script: Changes the Proximitypromt duration to a duration time that u want :D

View Raw
Edited By: D3f4ullt Download


Comments
5
User profile picture
Vector_GG 1 year ago
Just do fireproximityprompt(prompt)
User profile picture
QbvxiUdXG8nehUsRNfgUAdmin
Admin Badge
Admin
Verified Badge
Verified User
1 year ago
@Vectror_GG some exploits cant support it.
User profile picture
AuraFPS 1 year ago
or just do this why so long game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(prompt) prompt.HoldDuration = 0 prompt.Enabled = true end)
User profile picture
D3f4ullt 1 year ago
@Vector_GG @AuraFPS The script sets the duration permanently so a script from the game cant reset the duration to the default duration time, thats the reason.
Original message deleted
User profile picture
D3f4ullt 10 months ago
@glebbuba686 local function setHoldDuration(prompt) if prompt:IsA("ProximityPrompt") then prompt.HoldDuration = 0 end end for _, descendant in ipairs(workspace:GetDescendants()) do setHoldDuration(descendant) end workspace.DescendantAdded:Connect(setHoldDuration)
Please Login to add a comment.