Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
[OPEN SOURCE] anti env logger v3 - Universal Script | Free Roblox Script

[OPEN SOURCE] anti env logger v3

Universal 25 views 2 weeks ago
[OPEN SOURCE] anti env logger v3 - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: alyssa

back and better than ever, practically impossible for this to be user-patched via predefine or any other macrothis was made by vice (wtits on discord) from getgold.cc, if you own an env logger and you give me free premium you’ll get earlier access to my anti env logger source code (just like unix did, and look how many they patched while working on others)invites to all env loggers used here:25ms (discord.gg/25ms) – usable for free every 3 hours, overall decentUnveilR v2 (discord.gg/threaded) – best formatted code, goes really in-depth into itUnix (discord.gg/ADggURGv6r) (PAID/KNOWN BETA ACCESS ONLY) – most undetected by my detectionsCrypta 1 (discord.gg/rY4TYaEPNY) – 5 free daily usesbtw, for extra security, make sure to go through the code and look for any comments telling you to change something to “avoid predefine”, and then change what it tells you to, for example “:InvalidMethod” to “:SuperCoolMethod”

75 Lines 2,532 Bytes
-- Made by getgold.cc, get a free (beta) obfuscator @ wYnFuscate.com (obfuscator made by THE wYn)

-- no object method checks (change name of InvalidMethod to avoid predefine)
-- confirmed detected: crypta 1, 25ms
-- confirmed undetected: unveilr v2 (threaded), unix
local Success = pcall(function()
	Instance.new("Part"):InvalidMethod("a")
end)

while Success do
	task.spawn() -- invalid argument #1 to 'spawn' (function or thread expected)
end

-- function exploration (change method from GetChildren to avoid predefine)
-- confirmed detected: 25ms, unveilr v2 (threaded)
-- confirmed undetected: unix, crypta l1
game:GetChildren(function()
	while true do
		({})[nil] = true -- table index is nil
	end
end)

-- wrong amount of services as children
-- confirmed detected: crypta 1, unveilr v2 (threaded)
-- confirmed undetected: 25ms, unix
while #game:GetChildren() <= 4 do
	buffer.writei8(buffer.fromstring("a"), 1, 2) -- buffer access out of bounds
end

-- jsondecode doesn't decode (change values in json table to avoid predefine)
-- confirmed detected: unix? (may patch), crypta l1, 25ms
-- confirmed undetected: unveilr v2 (threaded)
local Success, Result = pcall(function()
	return game:GetService("HttpService"):JSONDecode('[68, "getgold.cc", true, 123, false, [321, null, "goldtm"], null, ["a"]]')
end)

while not Success do
	task() -- attempt to call a table value
end

while Result[6][2] ~= nil do
	(true)() -- attempt to call a boolean value
end

-- services don't exist as indexable children in the game (change service name to avoid predefine)
-- confirmed detected: unix? (may patch)
local Success = pcall(function()
	return game.HttpService
end)

while not Success do
	local _ = (nil).Parent -- attempt to index nil with 'Parent'
end

-- modifying _G also modifies the function environment (change _G var name and value to avoid predefine)
-- confirmed detected: unix? (may patch), 25ms
_G.getgoldcc = "goldtm"

while getfenv().getgoldcc ~= nil do
	game() -- attempt to call a Instance value
end

_G.getgoldcc = nil

-- game object is a table/non-existent, instead of an Instance
-- confirmed detected: unix? (may patch)
local _, Message = pcall(function()
	game()
end)

while not Message:find("attempt to call a Instance value") do
	table.create(9e9) -- invalid argument #1 to 'create' (size out of range)
end

--[[ Right before obfuscating, paste this code above/before your source code, and your script will not be able to be env logged ]]

Comments

Comments section coming soon...

Frequently Asked Questions

To use this script, you need a Roblox Executor. Simply copy the script from this page, paste it into your executor, and run it while you are in the Universal game.

This script may require a payment or subscription. Please check the script's description for more details.

Yes, this script has a key system. You may need to complete a task or join a Discord server to get a key.

Yes, this script is designed to be compatible with mobile executors.

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/open-source-anti-env-logger-v3/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other