local identity = "Unknown" local executor = "Unknown" pcall(function() if identifyexecutor then executor = identifyexecutor() end end) pcall(function() if getthreadidentity then identity = getthreadidentity() elseif printidentity then identity = printidentity() end end) game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Executor Information", Text = "Executor Name: "..tostring(executor).."\nLevel: "..tostring(identity), Duration = 3 })