local CoreGui = game:GetService("CoreGui") -- Lấy RobloxGui local RobloxGui = CoreGui:WaitForChild("RobloxGui") -- Xóa NotificationFrame nếu có local notifFrame = RobloxGui:FindFirstChild("NotificationFrame") or RobloxGui:FindFirstChild("SendNotificationInfo") if notifFrame then notifFrame:Destroy() -- hoặc notifFrame.Enabled = false để chỉ ẩn end -- Tự động ẩn nếu NotificationFrame được thêm lại RobloxGui.ChildAdded:Connect(function(child) if child.Name == "NotificationFrame" then child:Destroy() -- hoặc child.Enabled = false end end)