Skip to content

Commit

Permalink
Merge pull request #52 from GameGuyThrowaway/revision
Browse files Browse the repository at this point in the history
Update RemoteSpy.lua
  • Loading branch information
Upbolt authored Mar 19, 2022
2 parents 43f50cd + 9fa8b3b commit 9d75405
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/modules/RemoteSpy.lua
Original file line number Diff line number Diff line change
Expand Up @@ -862,7 +862,7 @@ scriptContext:SetCallback(function()
local robloxValueType = typeof(v)
local variableName = robloxValueType:sub(1, 1):upper() .. robloxValueType:sub(2)

if valueType == "userdata" then
if valueType == "userdata" or valueType == "vector" then
v = (typeof(v) == "Instance" and getInstancePath(v)) or userdataValue(v)
elseif valueType == "table" then
v = tableToString(v)
Expand Down

0 comments on commit 9d75405

Please sign in to comment.