This is my code:
game.DescendantAdded:Connect(function(descendant)
xpcall(function()
print(descendant:GetFullName())
print(descendant.Name:len())
end,(function()
print('errored, gui is in core gui!');
end))
end)
This is just a test to see how xpcall works.