Skip to content

Commit 4e6e090

Browse files
committed
Upd
1 parent 6e85442 commit 4e6e090

6 files changed

+11
-9
lines changed

AntiAfk exp.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
local BlacklistedMethods = {}
1313
local isexecutorfunction = isexecutorfunction or is_synapse_function or isexecutorclosure or isourclosure or function(f) return getinfo(f, "s").source:find("@") and true or false end
1414
local getthreadidentity, setthreadidentity = getthreadidentity or syn.get_thread_identity, setthreadidentity or syn.set_thread_identity
15-
local NUB = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. Branch or "main" .. "/NoUpvalueHook.lua"))()
15+
local NUB = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. (Branch or "main") .. "/NoUpvalueHook.lua"))()
1616

1717
local function TrueString(String)
1818
if type(String) ~= "string" then

FormatTable.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Report any bugs, issues and detections to me if you don't mind (NoTwistedHere#6703)
33
]]
44

5-
local Threading = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. Branch or "main" .. "/Threading.lua"))()
5+
local Threading = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. (Branch or "main") .. "/Threading.lua"))()
66
local HttpService = game:GetService("HttpService")
77
local ObjectTypes = {
88
["nil"] = 1;

FunctionDump.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
]]
44

55
if not FormatTable then
6-
loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. Branch or "main" .. "/FormatTable.lua"))()
6+
loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. (Branch or "main") .. "/FormatTable.lua"))()
77
end
88

9-
local Threading = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. Branch or "main" .. "/Threading.lua"))()
9+
local Threading = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. (Branch or "main") .. "/Threading.lua"))()
1010
local Place = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId)
1111
local Global, Local = "Function Dumps/", ("%s [%d]/"):format(tostring(Place and Place.Name or "Unknown Game"):gsub("[^%w%s]", ""), game.PlaceId)
1212
local Key = game:GetService("HttpService"):GenerateGUID(false)

RemoteSpy.lua

+5-3
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
adding syn V3 support made this go bye bye :(
55
]]
66

7-
if not FormatTable then
8-
loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. Branch or "main" .. "/FormatTable.lua"))()
7+
Branch = "beta"
8+
9+
if not Branch and not FormatTable then
10+
loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. (Branch or "main") .. "/FormatTable.lua"))()
911
end
10-
local NUB = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. Branch or "main" .. "/NoUpvalueHook.lua"))()
12+
local NUB = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. (Branch or "main") .. "/NoUpvalueHook.lua"))()
1113

1214
getgenv().WriteToFile = WriteToFile or false
1315
getgenv().RobloxConsole = RobloxConsole or false

ScriptDumper.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
local getname = function(Object) if Object:IsA("Script") and getscriptname then return getscriptname(Object) end return Object.Name end
77
local gethash = function(Object) local Success, Response = pcall(function() return getscripthash(Object) end) if Success and type(Response) == "string" then return Response end return; end
8-
local Threading = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. Branch or "main" .. "/Threading.lua"))()
8+
local Threading = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. (Branch or "main") .. "/Threading.lua"))()
99
local CoreGui, CorePackages, Players, RunService, RunService = game:GetService("CoreGui"), game:GetService("CorePackages"), game:GetService("Players"), game:GetService("RunService"), game:GetService("RunService")
1010
local Result = "<roblox xmlns:xmime=\"http://www.w3.org/2005/05/xmlmime\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xsi:noNamespaceSchemaLocation=\"http://www.roblox.com/roblox.xsd\" version=\"4\">"
1111
local Decompiled, Scripts = 0, {}

Threading.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
local Threading = {}
2-
local Signalling = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. Branch or "main" .. "/Signalling.lua"))()
2+
local Signalling = loadstring(game:HttpGet("https://raw.githubusercontent.com/NoTwistedHere/Roblox/" .. (Branch or "main") .. "/Signalling.lua"))()
33

44
function Threading.new(Option, Manual)
55
return setmetatable({

0 commit comments

Comments
 (0)