跳转到内容
可用

prompt spammer (universal, might not work in some games.)

CLclarkdevlinorg0 次浏览Universal2026年7月26日
分享
prompt spammer (universal, might not work in some games.)

脚本代码

Lua
local CalmLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/IcantAffordSynapse/calmlib/refs/heads/main/src.lua"))()
local window = CalmLib:win("auto prompt")
local section1 = window:tab("Autofarm","rbxassetid://109121102062195")
local plr = game:GetService("Players").LocalPlayer
local ProximityPromptService = game:GetService("ProximityPromptService")
local MAX_DIST=10

game:GetService("GuiService"):SetGameplayPausedNotificationEnabled(false) --sets pooppaused to 0

getgenv().config={
    enabled=false,
    autoInsPP=false,
    delay1=0.1,
    delay2=1
}

local function instantPP()
    for i,v in ipairs(game:GetService("Workspace"):GetDescendants()) do
        if v.ClassName=="ProximityPrompt" then
            v.HoldDuration=0
        end
    end
end

local function firePP(v)
    v:InputHoldBegin()
    task.wait(v.HoldDuration)
    v:InputHoldEnd()
end

local function fireAllPP()
    local char=plr.Character
    local hrp=char and char:FindFirstChild("HumanoidRootPart")
    if not hrp then return end

    for _,v in ipairs(game:GetService("Workspace"):GetDescendants()) do
        if v:IsA("ProximityPrompt") then
            local parent=v.Parent
            local targetPos=nil

            if parent and parent:IsA("BasePart") then
                targetPos=parent.Position
            elseif parent and parent:IsA("Attachment") then
                targetPos=parent.WorldPosition
            end

            if targetPos then
                local dist=(hrp.Position-targetPos).Magnitude
                if dist<MAX_DIST then
                    task.spawn(function()
                        firePP(v)
                    end)
                end
            end
        end
    end
end

section1:toggle("Auto ProximityPrompt",false,function(bool)
    getgenv().config.enabled=bool
    if not getgenv().config.enabled then return end
    task.spawn(function()
        while getgenv().config.enabled do 
            fireAllPP()
            task.wait(delay1)
        end
    end)
end)

section1:slider("Toggle AutoPP delay (ms)", 0, 1000, getgenv().config.delay1*1000, function(v)
    delay1=tonumber(v)/1000
end)

section1:toggle("Auto instantPP",false,function(bool)
    getgenv().config.autoInsPP=bool
    if not getgenv().config.autoInsPP then return end
    task.spawn(function()
        while getgenv().config.autoInsPP do 
            instantPP()
            task.wait(delay2)
        end
    end)
end)

section1:button("Manual InstantPP",function()
    task.spawn(function()
        instantPP()
    end)
end)
section1:slider("toggle instantPP delay (ms)",0,10000,getgenv().config.delay2*1000,function(v)
    delay2=tonumber(v)/1000
end)

描述

spams prox prompts. very selfexplanatory.

评论 (0)

登录以参与讨论

  • 成为第一个评论的人。

常见问题

如何使用 prompt spammer (universal, might not work in some games.) 脚本?
复制上方的脚本代码,打开你的 Roblox 执行器,粘贴代码,然后在游戏中点击执行。脚本运行后功能会立即激活。
prompt spammer (universal, might not work in some games.) 脚本免费吗?
是的。此脚本免费复制和使用。如果使用密钥系统,请通过「获取密钥」链接免费解锁。
使用 prompt spammer (universal, might not work in some games.) 脚本安全吗?
完整源代码显示在此页面上,让你在运行前准确了解其功能。请始终使用可信的执行器,并记住使用脚本违反 Roblox 服务条款,风险自负。
哪个执行器兼容 prompt spammer (universal, might not work in some games.)?
此脚本兼容大多数热门 Roblox 执行器。查看我们的执行器页面,为你的设备找到可信的免费或付费执行器。
prompt spammer (universal, might not work in some games.) | BloxScripter