RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script showing a notification with the errors in the output."
-- local script local output = script.Parent.Output output.Changed:Connect(function(property) if property == "Text" then local errors = output.Text:match("(%d+)%sError") if errors then game.StarterGui:SetCore("SendNotification", { Title = "Errors in Output", Text = errors .. " Errors in Output", Icon = "rbxassetid://YourIconIDHere" }) end end end)