ADVERTISEMENTREMOVE ADS
Change Proximity Promt duration
46,425 views
Universal script•
6 months ago

Script Preview
Description
ADVERTISEMENTREMOVE ADS
26 Lines • 566 Bytes
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
ADVERTISEMENTREMOVE ADS






Comments