ADVERTISEMENTREMOVE ADS

Change Proximity Promt duration

Universal script
6 months ago
Script preview thumbnail
Script Preview

Description

Script:


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

Tested with

ADVERTISEMENTREMOVE ADS
26 Lines • 566 Bytes
Raw
local targetDuration = 0 -- Change it here!
local function applyDuration(prompt)
if prompt:IsA("ProximityPrompt") then
coroutine.wrap(function()
while prompt and prompt.Parent do
if prompt.Duration ~= targetDuration then
pcall(function()
prompt.Duration = targetDuration
end)
end
wait(0.2 + math.random() * 0.15)
end
end)()
end
end
for _, obj in pairs(workspace:GetDescendants()) do
applyDuration(obj)
end
workspace.DescendantAdded:Connect(function(newObj)
wait(0.05)
applyDuration(newObj)
end)
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS