From d03fb4121632aacb8d0e5072509ca8f51d3d27e4 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 15:35:41 +0100 Subject: [PATCH 01/14] Update RemoteSpy.lua --- modules/RemoteSpy.lua | 27 ++++++++++++++++----------- 1 file changed, 16 insertions(+), 11 deletions(-) diff --git a/modules/RemoteSpy.lua b/modules/RemoteSpy.lua index 0cbb0df9..3f224edc 100644 --- a/modules/RemoteSpy.lua +++ b/modules/RemoteSpy.lua @@ -11,7 +11,7 @@ local requiredMethods = { ["getMetatable"] = true, ["setClipboard"] = true, ["getNamecallMethod"] = true, - ["getCallingScript"] = true, + ["getCallingScript"] = true } local remoteMethods = { @@ -23,6 +23,7 @@ local remoteMethods = { local remotesViewing = { RemoteEvent = true, + UnreliableRemoteEvent = true, RemoteFunction = false, BindableEvent = false, BindableFunction = false @@ -30,6 +31,7 @@ local remotesViewing = { local methodHooks = { RemoteEvent = Instance.new("RemoteEvent").FireServer, + UnreliableRemoteEvent = Instance.new('UnreliableRemoteEvent').FireServer, RemoteFunction = Instance.new("RemoteFunction").InvokeServer, BindableEvent = Instance.new("BindableEvent").Fire, BindableFunction = Instance.new("BindableFunction").Invoke @@ -51,7 +53,7 @@ end local nmcTrampoline nmcTrampoline = hookMetaMethod(game, "__namecall", function(...) local instance = ... - + if typeof(instance) ~= "Instance" then return nmcTrampoline(...) end @@ -63,11 +65,11 @@ nmcTrampoline = hookMetaMethod(game, "__namecall", function(...) elseif method == "invokeServer" then method = "InvokeServer" end - + if remotesViewing[instance.ClassName] and instance ~= remoteDataEvent and remoteMethods[method] then local remote = currentRemotes[instance] local vargs = {select(2, ...)} - + if not remote then remote = Remote.new(instance) currentRemotes[instance] = remote @@ -102,7 +104,8 @@ end) local pcall = pcall local function checkPermission(instance) - if (instance.ClassName) then end + if (instance.ClassName) then + end end for _name, hook in pairs(methodHooks) do @@ -113,10 +116,12 @@ for _name, hook in pairs(methodHooks) do if typeof(instance) ~= "Instance" then return originalMethod(...) end - + do local success = pcall(checkPermission, instance) - if (not success) then return originalMethod(...) end + if (not success) then + return originalMethod(...) + end end if instance.ClassName == _name and remotesViewing[instance.ClassName] and instance ~= remoteDataEvent then @@ -128,16 +133,16 @@ for _name, hook in pairs(methodHooks) do currentRemotes[instance] = remote end - local remoteIgnored = remote.Ignored + local remoteIgnored = remote.Ignored local argsIgnored = remote:AreArgsIgnored(vargs) - + if eventSet and (not remoteIgnored and not argsIgnored) then local call = { script = getCallingScript((PROTOSMASHER_LOADED ~= nil and 2) or nil), args = vargs, func = getInfo(3).func } - + remote:IncrementCalls(call) remoteDataEvent:Fire(instance, call) end @@ -146,7 +151,7 @@ for _name, hook in pairs(methodHooks) do return end end - + return originalMethod(...) end)) From 580084ddfdb7c1089e3cdb947028d89b14b7582f Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 15:36:30 +0100 Subject: [PATCH 02/14] Update RemoteSpy.lua --- ui/modules/RemoteSpy.lua | 90 +++++++++++++++++++++++----------------- 1 file changed, 53 insertions(+), 37 deletions(-) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index b179ca60..5fabb3fd 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -61,6 +61,7 @@ local icons = { ignore = "rbxassetid://4842578510", unignore = "rbxassetid://4842578818", RemoteEvent = "rbxassetid://4229806545", + UnreliableRemoteEvent = "rbxassetid://96897360575577", RemoteFunction = "rbxassetid://4229810474", BindableEvent = "rbxassetid://4229809371", BindableFunction = "rbxassetid://4229807624" @@ -116,11 +117,15 @@ local removeContextSelected = ContextMenuButton.new("rbxassetid://4702831188", " local removeConditionContextSelected = ContextMenuButton.new("rbxassetid://4702831188", "Remove Conditions") -local remoteListMenu = ContextMenu.new({ pathContext, conditionContext, clearContext, ignoreContext, blockContext, removeContext }) -local remoteListMenuSelected = ContextMenu.new({ pathContextSelected, clearContextSelected, ignoreContextSelected, unignoreContextSelected, blockContextSelected, unblockContextSelected, removeContextSelected }) -local remoteLogsMenu = ContextMenu.new({ scriptContext, callingScriptContext, spyClosureContext, repeatCallContext, viewAsHexContext }) -local remoteConditionMenu = ContextMenu.new({ removeConditionContext }) -local remoteConditionMenuSelected = ContextMenu.new({ removeConditionContextSelected }) +local remoteListMenu = ContextMenu.new({pathContext, conditionContext, clearContext, ignoreContext, blockContext, + removeContext}) +local remoteListMenuSelected = ContextMenu.new({pathContextSelected, clearContextSelected, ignoreContextSelected, + unignoreContextSelected, blockContextSelected, unblockContextSelected, + removeContextSelected}) +local remoteLogsMenu = ContextMenu.new({scriptContext, callingScriptContext, spyClosureContext, repeatCallContext, + viewAsHexContext}) +local remoteConditionMenu = ContextMenu.new({removeConditionContext}) +local remoteConditionMenuSelected = ContextMenu.new({removeConditionContextSelected}) local function checkCurrentIgnored() local selectedRemote = (selected.remoteLog or selected.logContext).Remote @@ -128,7 +133,8 @@ local function checkCurrentIgnored() LogsButtons.Ignore.Label.Text = (selectedRemote.Ignored and "Unignore") or "Ignore" LogsButtons.Ignore.Icon.Image = (selectedRemote.Ignored and icons.unignore) or icons.ignore - local newWidth = TextService:GetTextSize((selectedRemote.Ignored and "Unignore") or "Ignore", 18, "SourceSans", constants.textWidth).X + 30 + local newWidth = TextService:GetTextSize((selectedRemote.Ignored and "Unignore") or "Ignore", 18, "SourceSans", + constants.textWidth).X + 30 LogsButtons.Ignore.Size = UDim2.new(0, newWidth, 0, 20) end @@ -139,7 +145,8 @@ local function checkCurrentBlocked() LogsButtons.Block.Label.Text = (selectedRemote.Blocked and "Unblock") or "Block" LogsButtons.Block.Icon.Image = (selectedRemote.Blocked and icons.unblock) or icons.block - local newWidth = TextService:GetTextSize((selectedRemote.Blocked and "Unblock") or "Block", 18, "SourceSans", constants.textWidth).X + 30 + local newWidth = TextService:GetTextSize((selectedRemote.Blocked and "Unblock") or "Block", 18, "SourceSans", + constants.textWidth).X + 30 LogsButtons.Block.Size = UDim2.new(0, newWidth, 0, 20) end @@ -147,7 +154,7 @@ end local Condition = {} function Condition.new(remote, status, index, value, type) local condition = {} - local instance = Assets.ConditionPod:Clone() + local instance = Assets.ConditionPod:Clone() local content = instance.Content local identifiers = instance.Identifiers local button = ListButton.new(instance, remoteConditions) @@ -181,11 +188,11 @@ function Condition.new(remote, status, index, value, type) table.insert(selected.conditions, condition) end end) - + if byType then instance.Identifiers.ByType.Visible = false - end - + end + identifiers.ByType.Visible = type ~= nil identifiers.Status.Image = (status == "Ignore" and icons.ignore) or icons.block identifiers.Status.Border.Image = identifiers.Status.Image @@ -281,10 +288,16 @@ function Log.new(remote) local remoteInstanceName = remoteInstance.Name local remoteClassName = remoteInstance.ClassName local listButton = ListButton.new(button, remoteList) - - local normalAnimation = TweenService:Create(button.Label, constants.fadeLength, { TextColor3 = constants.normalColor }) - local blockAnimation = TweenService:Create(button.Label, constants.fadeLength, { TextColor3 = constants.blockedColor }) - local ignoreAnimation = TweenService:Create(button.Label, constants.fadeLength, { TextColor3 = constants.ignoredColor }) + + local normalAnimation = TweenService:Create(button.Label, constants.fadeLength, { + TextColor3 = constants.normalColor + }) + local blockAnimation = TweenService:Create(button.Label, constants.fadeLength, { + TextColor3 = constants.blockedColor + }) + local ignoreAnimation = TweenService:Create(button.Label, constants.fadeLength, { + TextColor3 = constants.ignoredColor + }) button.Name = remoteInstanceName button.Label.Text = remoteInstanceName @@ -294,9 +307,9 @@ function Log.new(remote) if selected.remoteLog then remoteLogs:Clear() end - + local nameLength = TextService:GetTextSize(remoteInstanceName, 18, "SourceSans", constants.textWidth).X + 20 - + selected.remoteLog = log for _i, call in pairs(remote.Logs) do @@ -319,8 +332,7 @@ function Log.new(remote) if #remote.Logs > 400 then MessageBox.Show("Warning", "This remote seems to have a lot of calls, opening this may cause your game to freeze for a few seconds.\n\nContinue?", - MessageType.YesNo, - viewLogs) + MessageType.YesNo, viewLogs) else viewLogs() end @@ -370,13 +382,13 @@ local function createArg(instance, index, value) arg.Icon.Image = oh.Constants.Types[valueType] arg.Index.Text = index - + if valueType == "table" then arg.Label.Text = toString(value) else arg.Label.Text = dataToString(value) end - + arg.Label.TextColor3 = oh.Constants.Syntax[valueType] arg.Name = tostring(index) arg.Parent = instance.Contents @@ -413,7 +425,7 @@ function ArgsLog.new(log, callInfo) button.Instance.Size = button.Instance.Size + UDim2.new(0, 0, 0, height) - return button + return button end function Log.playIgnore(log) @@ -434,11 +446,14 @@ function Log.adjust(log) local logIcon = logInstance.Icon local callWidth = TextService:GetTextSize(logInstance.Calls.Text, 18, "SourceSans", constants.textWidth).X + 10 - local iconPosition = callWidth - (((remoteClassName == "RemoteEvent" or remoteClassName == "BindableEvent") and 4) or 0) + local iconPosition = callWidth - + (((remoteClassName == "RemoteEvent" or remoteClassName == "UnreliableRemoteEvent" or + remoteClassName == "BindableEvent") and 4) or 0) local labelWidth = iconPosition + 21 logInstance.Calls.Size = UDim2.new(0, callWidth, 1, 0) - logIcon.Position = UDim2.new(0, iconPosition, 0.5, (remoteClassName == "RemoteEvent" and -9) or -7) + logIcon.Position = UDim2.new(0, iconPosition, 0.5, ((remoteClassName == "RemoteEvent" or remoteClassName == + 'UnreliableRemoteEvent') and -9) or -7) logInstance.Label.Position = UDim2.new(0, labelWidth, 0, 0) logInstance.Label.Size = UDim2.new(1, -labelWidth, 1, 0) end @@ -464,7 +479,7 @@ function Log.incrementCalls(log, callInfo) buttonInstance.Calls.Text = (calls < 10000 and calls) or "..." log:Adjust() - + if selected.remoteLog == log then ArgsLog.new(log, callInfo) remoteLogs:Recalculate() @@ -499,7 +514,7 @@ local function refreshLogs() remoteList:Recalculate() end -for _i,flag in pairs(ListFlags:GetChildren()) do +for _i, flag in pairs(ListFlags:GetChildren()) do if flag:IsA("Frame") then local check = CheckBox.new(flag) @@ -620,7 +635,7 @@ NewConditionButtons.Add.MouseButton1Click:Connect(function() else return MessageBox.Show("Error", "Your input does not match the type you selected", MessageType.OK) end - else + else local success, result = pcall(loadstring("return " .. value)) if valueType == "Value" then @@ -720,7 +735,7 @@ blockContext:SetCallback(function() selected.logContext.Remote:Block() checkCurrentBlocked() - + if selectedRemote.Blocked then selected.logContext:PlayBlock() elseif selectedRemote.Ignored then @@ -837,7 +852,7 @@ scriptContext:SetCallback(function() local remotePath = getInstancePath(selectedRemote) local method - if remoteClassName == "RemoteEvent" then + if remoteClassName == "RemoteEvent" or remoteClassName == "UnreliableRemoteEvent" then method = "FireServer" elseif remoteClassName == "RemoteFunction" then method = "InvokeServer" @@ -872,7 +887,7 @@ scriptContext:SetCallback(function() v = toString(v) end - script = script .. ("local oh%s%d = %s\n"):format(variableName, i, v) + script = script .. ("local oh%s%d = %s\n"):format(variableName, i, v) args = args .. ("oh%s%d, "):format(variableName, i) end @@ -901,7 +916,8 @@ spyClosureContext:SetCallback(function() if result == false then MessageBox.Show("Already hooked", "You are already spying " .. selectedClosure.Name) elseif result == nil then - MessageBox.Show("Cannot hook", ('Cannot hook "%s" because there are no upvalues'):format(selectedClosure.Name)) + MessageBox.Show("Cannot hook", + ('Cannot hook "%s" because there are no upvalues'):format(selectedClosure.Name)) end end end) @@ -909,9 +925,9 @@ end) repeatCallContext:SetCallback(function() local remoteInstance = selected.remoteLog.Remote.Instance local remoteClassName = remoteInstance.ClassName - local method + local method - if remoteClassName == "RemoteEvent" then + if remoteClassName == "RemoteEvent" or remoteClassName == "UnreliableRemoteEvent" then method = "FireServer" elseif remoteClassName == "RemoteFunction" then method = "InvokeServer" @@ -969,24 +985,24 @@ end) conditionStatus:SetCallback(function(_dropdown, selected) local iconCondition = (selected.Name == "Ignore" and icons.ignore) or icons.block - local icon = NewConditionContent.Status.Icon + local icon = NewConditionContent.Status.Icon icon.Image = iconCondition icon.Border.Image = iconCondition end) conditionType:SetCallback(function(_dropdown, selected) - local icon = NewConditionContent.Type.Icon + local icon = NewConditionContent.Type.Icon local typeIcons = oh.Constants.Types local iconCondition = typeIcons[selected.Name] or typeIcons["userdata"] - + icon.Image = iconCondition icon.Border.Image = iconCondition end) conditionValueType:SetCallback(function(_dropdown, selected) local iconCondition = (selected.Name == "Type" and icons.type) or oh.Constants.Types["integral"] - local icon = NewConditionContent.ValueType.Icon + local icon = NewConditionContent.ValueType.Icon icon.Image = iconCondition icon.Border.Image = iconCondition From 693ad1b919ef69efa626e110dda5eb32b80c1b87 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 15:37:39 +0100 Subject: [PATCH 03/14] Update init.lua --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 3e319356..93a45b2a 100644 --- a/init.lua +++ b/init.lua @@ -5,7 +5,7 @@ if oh then end local web = true -local user = "Upbolt" -- change if you're using a fork +local user = "syn-developmentlabs" -- change if you're using a fork local branch = "revision" local importCache = {} From ac4445e40ef07f6ce2029083c95d8c5bb1f030be Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 15:38:16 +0100 Subject: [PATCH 04/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cbb79b1..9faf15e0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ## Script ```lua -local owner = "Upbolt" +local owner = "syn-developmentlabs" local branch = "revision" local function webImport(file) From a2bd5bdadc8db4e2f92fc5dcbe28d693e5353225 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 16:16:47 +0100 Subject: [PATCH 05/14] Update RemoteSpy.lua --- ui/modules/RemoteSpy.lua | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index 5fabb3fd..e58648eb 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -447,13 +447,11 @@ function Log.adjust(log) local callWidth = TextService:GetTextSize(logInstance.Calls.Text, 18, "SourceSans", constants.textWidth).X + 10 local iconPosition = callWidth - - (((remoteClassName == "RemoteEvent" or remoteClassName == "UnreliableRemoteEvent" or - remoteClassName == "BindableEvent") and 4) or 0) + (((remoteClassName == "RemoteEvent" or remoteClassName == "BindableEvent") and 4) or 0) local labelWidth = iconPosition + 21 logInstance.Calls.Size = UDim2.new(0, callWidth, 1, 0) - logIcon.Position = UDim2.new(0, iconPosition, 0.5, ((remoteClassName == "RemoteEvent" or remoteClassName == - 'UnreliableRemoteEvent') and -9) or -7) + logIcon.Position = UDim2.new(0, iconPosition, 0.5, ((remoteClassName == "RemoteEvent") and -9) or -7) logInstance.Label.Position = UDim2.new(0, labelWidth, 0, 0) logInstance.Label.Size = UDim2.new(1, -labelWidth, 1, 0) end From abf4dc76a1aed12b954e7f81ed8bc7689108fd70 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 16:30:48 +0100 Subject: [PATCH 06/14] Update RemoteSpy.lua --- ui/modules/RemoteSpy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index e58648eb..b7ceee04 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -1008,7 +1008,7 @@ end) Methods.ConnectEvent(function(remoteInstance, callInfo) if not removed[remoteInstance] then - local remote = currentRemotes[remoteInstance] + local remote = currentRemotes[remoteInstance] local log = currentLogs[remoteInstance] or Log.new(remote) log:IncrementCalls(callInfo) From e72294e8ff8aa6ee45dc137a4bf9188df37bb6ee Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 16:30:54 +0100 Subject: [PATCH 07/14] Update RemoteSpy.lua --- ui/modules/RemoteSpy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index b7ceee04..e58648eb 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -1008,7 +1008,7 @@ end) Methods.ConnectEvent(function(remoteInstance, callInfo) if not removed[remoteInstance] then - local remote = currentRemotes[remoteInstance] + local remote = currentRemotes[remoteInstance] local log = currentLogs[remoteInstance] or Log.new(remote) log:IncrementCalls(callInfo) From d52fd896aaab3b349d3a4ed5d33df77667a4c586 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 16:32:32 +0100 Subject: [PATCH 08/14] Update RemoteSpy.lua --- ui/modules/RemoteSpy.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index e58648eb..bf76ab6e 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -451,6 +451,9 @@ function Log.adjust(log) local labelWidth = iconPosition + 21 logInstance.Calls.Size = UDim2.new(0, callWidth, 1, 0) + if (remoteClassName == "UnreliableRemoteEvent") then + logIcon.Size = UDim2.fromScale(2, 2) + end logIcon.Position = UDim2.new(0, iconPosition, 0.5, ((remoteClassName == "RemoteEvent") and -9) or -7) logInstance.Label.Position = UDim2.new(0, labelWidth, 0, 0) logInstance.Label.Size = UDim2.new(1, -labelWidth, 1, 0) From 8bed371b66e63e0899d457d08e6cb808ba48cd48 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 16:33:13 +0100 Subject: [PATCH 09/14] Update RemoteSpy.lua --- ui/modules/RemoteSpy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index bf76ab6e..cf36105a 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -61,7 +61,7 @@ local icons = { ignore = "rbxassetid://4842578510", unignore = "rbxassetid://4842578818", RemoteEvent = "rbxassetid://4229806545", - UnreliableRemoteEvent = "rbxassetid://96897360575577", + UnreliableRemoteEvent = "rbxassetid://4229806545", RemoteFunction = "rbxassetid://4229810474", BindableEvent = "rbxassetid://4229809371", BindableFunction = "rbxassetid://4229807624" From 45d0e8b32f561b14947939b817d0d82602799531 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 16:35:44 +0100 Subject: [PATCH 10/14] Update RemoteSpy.lua --- modules/RemoteSpy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/RemoteSpy.lua b/modules/RemoteSpy.lua index 3f224edc..d8650667 100644 --- a/modules/RemoteSpy.lua +++ b/modules/RemoteSpy.lua @@ -23,7 +23,7 @@ local remoteMethods = { local remotesViewing = { RemoteEvent = true, - UnreliableRemoteEvent = true, + -- UnreliableRemoteEvent = true, RemoteFunction = false, BindableEvent = false, BindableFunction = false From 2975501bbf4b6a756e29911421e73ea2d014ff14 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 16:38:09 +0100 Subject: [PATCH 11/14] Update RemoteSpy.lua --- modules/RemoteSpy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/RemoteSpy.lua b/modules/RemoteSpy.lua index d8650667..3f224edc 100644 --- a/modules/RemoteSpy.lua +++ b/modules/RemoteSpy.lua @@ -23,7 +23,7 @@ local remoteMethods = { local remotesViewing = { RemoteEvent = true, - -- UnreliableRemoteEvent = true, + UnreliableRemoteEvent = true, RemoteFunction = false, BindableEvent = false, BindableFunction = false From 96fcab64c1ee3f61c1cf69670c4bd0f6516e6c86 Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 16:38:27 +0100 Subject: [PATCH 12/14] Update RemoteSpy.lua --- ui/modules/RemoteSpy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index cf36105a..bf76ab6e 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -61,7 +61,7 @@ local icons = { ignore = "rbxassetid://4842578510", unignore = "rbxassetid://4842578818", RemoteEvent = "rbxassetid://4229806545", - UnreliableRemoteEvent = "rbxassetid://4229806545", + UnreliableRemoteEvent = "rbxassetid://96897360575577", RemoteFunction = "rbxassetid://4229810474", BindableEvent = "rbxassetid://4229809371", BindableFunction = "rbxassetid://4229807624" From 68eb914119c6af3798b5ee669081e127d3cd29ad Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 20:20:35 +0100 Subject: [PATCH 13/14] Update RemoteSpy.lua --- modules/RemoteSpy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/RemoteSpy.lua b/modules/RemoteSpy.lua index 3f224edc..ea59f408 100644 --- a/modules/RemoteSpy.lua +++ b/modules/RemoteSpy.lua @@ -52,7 +52,7 @@ end local nmcTrampoline nmcTrampoline = hookMetaMethod(game, "__namecall", function(...) - local instance = ... + local instance = ... if typeof(instance) ~= "Instance" then return nmcTrampoline(...) From 97fa6869e9cb015fc7e14b941d72c4d06e669dbe Mon Sep 17 00:00:00 2001 From: syn-developmentlabs Date: Sat, 1 Feb 2025 20:21:07 +0100 Subject: [PATCH 14/14] Update RemoteSpy.lua --- ui/modules/RemoteSpy.lua | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/ui/modules/RemoteSpy.lua b/ui/modules/RemoteSpy.lua index bf76ab6e..b4268546 100644 --- a/ui/modules/RemoteSpy.lua +++ b/ui/modules/RemoteSpy.lua @@ -61,7 +61,7 @@ local icons = { ignore = "rbxassetid://4842578510", unignore = "rbxassetid://4842578818", RemoteEvent = "rbxassetid://4229806545", - UnreliableRemoteEvent = "rbxassetid://96897360575577", + UnreliableRemoteEvent = "rbxassetid://86005437639724", RemoteFunction = "rbxassetid://4229810474", BindableEvent = "rbxassetid://4229809371", BindableFunction = "rbxassetid://4229807624" @@ -447,14 +447,13 @@ function Log.adjust(log) local callWidth = TextService:GetTextSize(logInstance.Calls.Text, 18, "SourceSans", constants.textWidth).X + 10 local iconPosition = callWidth - - (((remoteClassName == "RemoteEvent" or remoteClassName == "BindableEvent") and 4) or 0) + (((remoteClassName == "RemoteEvent" or remoteClassName == "UnreliableRemoteEvent" or + remoteClassName == "BindableEvent") and 4) or 0) local labelWidth = iconPosition + 21 logInstance.Calls.Size = UDim2.new(0, callWidth, 1, 0) - if (remoteClassName == "UnreliableRemoteEvent") then - logIcon.Size = UDim2.fromScale(2, 2) - end - logIcon.Position = UDim2.new(0, iconPosition, 0.5, ((remoteClassName == "RemoteEvent") and -9) or -7) + logIcon.Position = UDim2.new(0, iconPosition, 0.5, ((remoteClassName == "RemoteEvent" or remoteClassName == + "UnreliableRemoteEvent") and -9) or -7) logInstance.Label.Position = UDim2.new(0, labelWidth, 0, 0) logInstance.Label.Size = UDim2.new(1, -labelWidth, 1, 0) end