-- By: ZSII#006 local startTime = os.clock() --// Start Time local NotificationLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/DemogorgonItsMe/DemoNotifications/refs/heads/main/V2/source.lua"))() NotificationLib:SetSettings({ position = "BottomRight", -- "BottomRight" or "BottomCenter" maxNotifications = 5, -- Max notifications shown simultaneously duration = 4, -- Default duration (seconds) spacing = 10, -- Space between notifications (px) fadeTime = 0.3, -- Animation duration (seconds) slideDistance = 20 -- Slide animation distance (px) }) NotificationLib:SetTheme({ -- Colors primaryColor = Color3.fromRGB(45, 45, 45), successColor = Color3.fromRGB(50, 180, 100), errorColor = Color3.fromRGB(220, 80, 80), warningColor = Color3.fromRGB(240, 180, 50), textColor = Color3.fromRGB(255, 255, 255), showStroke = false, useBackgroundColor = false, backgroundTransparency = 0.1, cornerRadius = UDim.new(0, 5), font = Enum.Font.GothamSemibold, background = "rbxassetid://18610728562", closeIcon = "rbxassetid://6031094677", mobileScale = 0.8 }) wait(3.91567888888888) local loadTime = os.clock() - startTime --// End Time NotificationLib:Notify({ Title = string.format("Time used: %.3f s", loadTime), --// Display loading time Message = "Now Load Success!", Type = "info", Duration = 5 })