local CoreGui = game:GetService("CoreGui") local TweenService = game:GetService("TweenService") local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "ViperNotifGui" ScreenGui.Parent = CoreGui local MainFrame = Instance.new("Frame") MainFrame.Name = "MainFrame" MainFrame.Size = UDim2.new(0, 200, 0, 80) MainFrame.BackgroundTransparency = 0.1 MainFrame.Position = UDim2.new(0, 0, 0, 0) -- Start off-screen for slide effect MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) -- Black-Gray mix MainFrame.BorderSizePixel = 0 MainFrame.Parent = ScreenGui local Stroke = Instance.new("UIStroke") Stroke.Thickness = 4 Stroke.Color = Color3.fromRGB(100, 100, 100) -- Gray border Stroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border Stroke.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0.4, 0) Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0, -0.2, 0, 0) Title.Text = "Notification" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 20 Title.Font = Enum.Font.FredokaOne Title.Parent = MainFrame local Msg = Instance.new("TextLabel") Msg.Size = UDim2.new(1, 0, 0.4, 0) Msg.Position = UDim2.new(0, 0, 0.35, 0) Msg.BackgroundTransparency = 1 Msg.Text = "Script Loading..." Msg.TextColor3 = Color3.fromRGB(255, 255, 255) Msg.TextSize = 14 Msg.Font = Enum.Font.Gotham Msg.Parent = MainFrame local BarBg = Instance.new("Frame") BarBg.Size = UDim2.new(1, 0, 0, 5) BarBg.Position = UDim2.new(0, 0, 1, -5) BarBg.BackgroundColor3 = Color3.fromRGB(50, 50, 50) BarBg.BorderSizePixel = 0 BarBg.Parent = MainFrame local BarFill = Instance.new("Frame") BarFill.Size = UDim2.new(0, 0, 1, 0) BarFill.BackgroundColor3 = Color3.fromRGB(255, 255, 255) BarFill.BorderSizePixel = 0 BarFill.Parent = BarBg local function runNotification() -- Slide In (Center Left) MainFrame:TweenPosition(UDim2.new(0, 300, 0.5, -200), "Out", "Quad", 0.5, true) -- Progress Bar (10 Seconds) local barTween = TweenService:Create(BarFill, TweenInfo.new(10, Enum.EasingStyle.Linear), {Size = UDim2.new(1, 0, 1, 0)}) barTween:Play() barTween.Completed:Wait() -- Slide Out MainFrame:TweenPosition(UDim2.new(0.3, 0, 0.5, -200), "In", "Quad", 0.5, true) task.wait(0.5) ScreenGui:Destroy() -- Execute the script loadstring(game:HttpGet("https://raw.githubusercontent.com/venux83h/Viper/refs/heads/main/ViperLarKy"))() end task.spawn(runNotification)