From ad9bb0a174a36f921c5d84a63c04fe70bc8c7198 Mon Sep 17 00:00:00 2001 From: L7NEG <88356593+L7NEG@users.noreply.github.com> Date: Sat, 16 Sep 2023 18:17:59 +0300 Subject: [PATCH] Merged AFK Scripts Into One Script --- ...tomatic_Sell_Crate AFK_Male And Female.lua | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 Kiddions/Automatic_Sell_Crate AFK_Male And Female.lua diff --git a/Kiddions/Automatic_Sell_Crate AFK_Male And Female.lua b/Kiddions/Automatic_Sell_Crate AFK_Male And Female.lua new file mode 100644 index 0000000..44bb135 --- /dev/null +++ b/Kiddions/Automatic_Sell_Crate AFK_Male And Female.lua @@ -0,0 +1,49 @@ +-- https://dsc.gg/l7neg- +-- https://l7neg.tk +--©️ 2023 L7NEG +boolcl = false +Cloop = false +local WH = script("am_mp_warehouse") +local function Cloop() + while Cloop do + if WH:is_active() then + menu.send_key_up(83) + menu.send_key_press(69) + sleep(1) + if not WH:is_active() then + menu.send_key_press(13) + menu.send_key_down(83) + end + end + end +end +menu.add_toggle("Automatic Sell Crate Afk Male", function() + return boolcl +end, function() + boolcl = not boolcl + Cloop(boolcl) + +end) + +boolclFemale = false +CloopFemale = false +local function CloopFemale() + while CloopFemale do + if WH:is_active() then + menu.send_key_up(87) + menu.send_key_press(69) + sleep(1) + if not WH:is_active() then + menu.send_key_press(13) + menu.send_key_down(83) + end + end + end +end +menu.add_toggle("Automatic Sell Crate AFK Female", function() + return boolclFemale +end, function() + boolclFemale = not boolclFemale + CloopFemale(boolclFemale) + +end)