
2.2k Views
Change Proximity Promt duration
Universal Script ๐Uploaded by 11 months 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 11 months ago
Just do fireproximityprompt(prompt)
Offline
QbvxiUdXG8nehUsRNfgUAdmin 
11 months ago
@Vectror_GG some exploits cant support it.
Admin

Verified User

Offline
AuraFPS 11 months ago
or just do this why so long
game:GetService("ProximityPromptService").PromptButtonHoldBegan:Connect(function(prompt)
prompt.HoldDuration = 0
prompt.Enabled = true
end)
Offline
D3f4ullt 11 months 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 9 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)
![[๐ RELEASE] Anime Astral Simulator](/images/script/113236157544232-1780333729144.png)

