--------------------------------------------------------------------------- -- SETTINGS --------------------------------------------------------------------------- getgenv().NoLogConfig = { -- Paste your premium key here (from the link https://alxhub-keysystem.up.railway.app). Leave "" for free. Key = "", -- "monitor" = log only, don't block anything (good to see what scripts do) -- "balanced" = block threats, fake your identity in leaks (recommended) -- "strict" = block anything suspicious too (premium) -- "paranoid" = block everything unless you allowlist it (premium) Mode = "balanced", -- "stealth" = silently return a fake response so the script doesn't know -- "loud" = throw an error so you can see exactly where it tried BlockStyle = "stealth", -- toast popup when something gets blocked Notifications = true, -- print to F9 console ConsoleLog = true, -- in-game log panel you can drag around (premium) Dashboard = true, -- key to show/hide the dashboard DashboardKey = "RightControl", -- give other scripts a fake HWID/ClientId instead of your real one SpoofIdentity = true, -- check what scripts send through RemoteEvents for your info ScanRemotes = true, -- block scripts from reading your browser cookies and saved passwords ScanFilesystem = true, -- catch scripts that do game.HttpGet(game, url) instead of game:HttpGet(url) HookIndex = true, -- how often NoLog checks if another script removed its hooks (seconds) WatchdogInterval = 2, -- if NoLog blocks something you actually need, add the domain here Allowlist = { -- "api.some-service.com", }, -- block specific domains (premium) Denylist = { -- "sketchy-site.example", }, -- if a specific script you trust keeps getting flagged, put its name here -- (it still can't send your real info, it just won't be blocked from -- connecting to flagged hosts) TrustedScripts = { -- "MyHub", }, } loadstring(game:HttpGet("https://alxhub-keysystem.up.railway.app/nolog-core.lua"))()