local cooldownTime = 1.5 -- 设置冷却时间为N秒 local lastClickTime = {} -- 用来存储上次点击的时间 local function canClick(pid) local currentTime = os.time() if not lastClickTime[pid] or currentTime - lastClickTime[pid] >= cooldownTime then lastClickTime[pid] = currentTime return true end 在按钮事件判断后加入 if canClick(玩家迷你号的变量) then ----正常点击 else ----异常点击,如果没有异常惩罚的要求,可以不加else功能。 end