local HttpService = game:GetService("HttpService") local rawLink = "https://raw.githubusercontent.com/AxerRe/ProSite/refs/heads/main/views/AxrexNotifier.lua" local success, NotificationLib = pcall(function() return loadstring(game:HttpGet(rawLink))() end) if success and NotificationLib then NotificationLib:Show("⚡ Example", "Library loaded!", 3) else warn("Failed to load Notification from GitHub!") end