Is there any ways to make xpcall only return the actual error and not the script full instance name?
xpcall(function()
RealTable[fakevalue](nil)
end,function(a0)
print(a0) -- would print script:GetFullName() along with error itself, which I only want the error.
end)