--[[ ---------------- Configuation ---------------- --]] local HookFunc = false local keywords = { "kick", } function useless() print("📛 their was another funcDump, funcLogger like this but way better \n but dumbass people kept saying \n \n -----'OH THIS IS CHATGPT' \n \n ----- 'HOLY GPTTT' so i just \n \n ----- reworked on it and made it worse/less features") print("⚠️ TS AINT GETTING UPDATED SO DON'T ASK ME FOR UPDATES") end useless() local function findKeywords() local found = false for _, func in next, getgc(true) do if type(func) == 'function' then local info = debug.getinfo(func) if info.name then for _, keyword in ipairs(keywords) do if info.name:lower():find(keyword) then print("✅ keyword functions found: " .. info.name) found = true if HookFunc then hookfunction(func, function(...) return nil end) formatted = string.format("⚓ Hooked %s", info.name ) print(formatted) end end end end end end end findKeywords()