ScriptBlox is undergoing maintenance, so downtime is possible. Sorry for the inconvenience!
Universal Script ๐Ÿ“Œ
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

View Raw
Edited By: D3f4ullt Download


Comments
5
User profile picture
Vector_GG 11 months ago
Just do fireproximityprompt(prompt)
User profile picture
QbvxiUdXG8nehUsRNfgUAdmin
Admin Badge
Admin
Verified Badge
Verified User
11 months ago
@Vectror_GG some exploits cant support it.
User profile picture
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)
User profile picture
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
User profile picture
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)
Please Login to add a comment.