-- Basic NI autoclicker -- PC_Cat local args = {...} local cps = args[1] or 1 print(tostring(cps) .. " cps") local p = peripheral.wrap("back") if not p or not p.swing then error("NI with kinetic module required!") end while true do print(p.swing()) sleep(1 / cps) end