
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
Comments
5

Offline
Vector_GG 1 year ago
Just do fireproximityprompt(prompt)
Offline
QbvxiUdXG8nehUsRNfgUAdmin 
1 year ago
@Vectror_GG some exploits cant support it.
Admin

Verified User

Offline
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)
Offline
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

Offline
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)



