local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local Description = Instance.new("TextLabel") local RunBtn = Instance.new("TextButton") local CloseBtn = Instance.new("TextButton") local UICorner = Instance.new("UICorner") ScreenGui.Parent = game:GetService("CoreGui") ScreenGui.Name = "Aj_NoticeBox" MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) MainFrame.Position = UDim2.new(0.5, -160, 0.5, -90) MainFrame.Size = UDim2.new(0, 320, 0, 180) MainFrame.Active = true MainFrame.Draggable = true local mainCorner = Instance.new("UICorner") mainCorner.CornerRadius = UDim.new(0, 10) mainCorner.Parent = MainFrame Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 40) Title.Text = "📢 IMPORTANT NOTICE" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 18 Title.Font = Enum.Font.GothamBold Title.BackgroundTransparency = 1 Description.Parent = MainFrame Description.Position = UDim2.new(0, 15, 0, 45) Description.Size = UDim2.new(0, 290, 0, 70) Description.Text = "To use the Aj Avatar Mod, you must run 'Aj Music Hub'. Inside, you will find an 'Avatar' tab where everything has been added for you." Description.TextColor3 = Color3.fromRGB(200, 200, 200) Description.TextWrapped = true Description.TextSize = 14 Description.Font = Enum.Font.GothamMedium Description.BackgroundTransparency = 1 RunBtn.Parent = MainFrame RunBtn.Position = UDim2.new(0, 15, 0, 125) RunBtn.Size = UDim2.new(0, 160, 0, 40) RunBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 255) RunBtn.Text = "🚀 Run Aj Music Hub" RunBtn.TextColor3 = Color3.fromRGB(255, 255, 255) RunBtn.Font = Enum.Font.GothamBold RunBtn.TextSize = 14 local runCorner = Instance.new("UICorner") runCorner.Parent = RunBtn CloseBtn.Parent = MainFrame CloseBtn.Position = UDim2.new(0, 185, 0, 125) CloseBtn.Size = UDim2.new(0, 120, 0, 40) CloseBtn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) CloseBtn.Text = "Close" CloseBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CloseBtn.Font = Enum.Font.GothamBold CloseBtn.TextSize = 14 local closeCorner = Instance.new("UICorner") closeCorner.Parent = CloseBtn RunBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() loadstring(game:HttpGet("https://pastebin.com/raw/zLspNekY"))() end) CloseBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end)