A Notification is a non-disruptive, transient message that appears on screen to alert the user of important information, events, or state changes within an application.
localnotification=app:Notification({Title="New Message",Subtitle="You received a new message from a friend.",App="CHAT",Icon=cascade.Symbols.bell,AppIcon="rbxassetid://132228700346004",Duration=5,Closed=function(self,fromUser)print("Notification was dismissed! (from user: "..tostring(fromUser)..")")end})-- Sometime later, if you need to manually close it:-- notification:Close()